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
14 lines
260 B
TypeScript
14 lines
260 B
TypeScript
import { cva } from "class-variance-authority"
|
|
|
|
import styles from "./iconChip.module.css"
|
|
|
|
export const iconChipVariants = cva(styles.chip, {
|
|
variants: {
|
|
color: {
|
|
blue: styles.blue,
|
|
green: styles.green,
|
|
red: styles.red,
|
|
},
|
|
},
|
|
})
|