import { cva } from "class-variance-authority" import styles from "./videoPlayer.module.css" export const config = { variants: { variant: { inline: styles.inline, hero: styles.hero, }, }, defaultVariants: { variant: "inline", }, } as const export const variants = cva(styles.videoPlayer, config)