import { cva } from "class-variance-authority" import styles from "./loyaltyCard.module.css" export const loyaltyCardVariants = cva(styles.container, { variants: { theme: { white: styles.white, }, }, defaultVariants: { theme: "white", }, })