Files
web/apps/scandic-web/components/TempDesignSystem/Breadcrumbs/Arrow/variants.ts
Anton Gunnarsson 08804e8675 Merged in chore/cleanup-scandic-web (pull request #2831)
chore: Cleanup scandic-web

* Remove unused files

* Remove unused and add missing packages

* Remove unused exports


Approved-by: Linus Flood
2025-09-18 15:33:00 +00:00

21 lines
375 B
TypeScript

import { cva } from "class-variance-authority"
import styles from "./arrow.module.css"
export const arrowVariants = cva(styles.arrow, {
variants: {
color: {
black: styles.black,
white: styles.white,
},
size: {
small: styles.small,
medium: styles.medium,
},
},
defaultVariants: {
color: "white",
size: "medium",
},
})