feat(SW-1450): added components in destination pages from cs * feat(SW-1450): added components in destination pages from cs * feat(SW-1450): added correct refs and removed classNames Approved-by: Fredrik Thorsson
18 lines
355 B
TypeScript
18 lines
355 B
TypeScript
import { cva } from "class-variance-authority"
|
|
|
|
import styles from "./chip.module.css"
|
|
|
|
export const chipVariants = cva(styles.chip, {
|
|
variants: {
|
|
variant: {
|
|
default: styles.default,
|
|
burgundy: styles.burgundy,
|
|
transparent: styles.transparent,
|
|
tag: styles.tag,
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
variant: "default",
|
|
},
|
|
})
|