import { cva } from 'class-variance-authority' import styles from './loading.module.css' export const config = { variants: { type: { Dark: styles.dark, White: styles.white, }, }, defaultVariants: { type: 'Dark', }, } as const export const variants = cva(styles.loading, config)