Feat/SW-338 design filters and sorting on select hotel * feat(SW-338): design hotel sort dropdown * Translations * feat(SW-338): style filters * Bold * Import type * Translations * Rename and add translation * Rename translation Approved-by: Bianca Widstam
17 lines
317 B
TypeScript
17 lines
317 B
TypeScript
import { cva } from "class-variance-authority"
|
|
|
|
import styles from "./label.module.css"
|
|
|
|
export const labelVariants = cva(styles.label, {
|
|
variants: {
|
|
size: {
|
|
small: styles.small,
|
|
regular: styles.regular,
|
|
discreet: styles.discreet,
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
size: "regular",
|
|
},
|
|
})
|