fix(SW-3691): Setup one prettier config for whole repo * Setup prettierrc in root and remove other configs Approved-by: Joakim Jäderberg Approved-by: Linus Flood
18 lines
331 B
TypeScript
18 lines
331 B
TypeScript
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)
|