chore(SW-3145): Move Preamble to design-system * Move Preamble to design-system Approved-by: Linus Flood
25 lines
516 B
TypeScript
25 lines
516 B
TypeScript
import { cva } from 'class-variance-authority'
|
|
|
|
import styles from './preamble.module.css'
|
|
|
|
const config = {
|
|
variants: {
|
|
color: {
|
|
black: styles.black,
|
|
burgundy: styles.burgundy,
|
|
pale: styles.pale,
|
|
textMediumContrast: styles.textMediumContrast,
|
|
baseText: styles.baseText,
|
|
},
|
|
textAlign: {
|
|
center: styles.center,
|
|
left: styles.left,
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
color: 'black',
|
|
},
|
|
} as const
|
|
|
|
export const preambleVariants = cva(styles.preamble, config)
|