Merged in fix/3697-prettier-configs (pull request #3396)
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
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { cva } from 'class-variance-authority'
|
||||
import { cva } from "class-variance-authority"
|
||||
|
||||
import styles from './link.module.css'
|
||||
import styles from "./link.module.css"
|
||||
|
||||
export const linkVariants = cva(styles.link, {
|
||||
variants: {
|
||||
@@ -8,18 +8,18 @@ export const linkVariants = cva(styles.link, {
|
||||
true: styles.active,
|
||||
},
|
||||
color: {
|
||||
none: '',
|
||||
none: "",
|
||||
peach50: styles.peach50,
|
||||
white: styles.white,
|
||||
red: styles.red,
|
||||
'Text/Interactive/Default': styles['Text-Interactive-Default'],
|
||||
'Text/Interactive/Secondary': styles['Text-Interactive-Secondary'],
|
||||
"Text/Interactive/Default": styles["Text-Interactive-Default"],
|
||||
"Text/Interactive/Secondary": styles["Text-Interactive-Secondary"],
|
||||
},
|
||||
size: {
|
||||
small: styles.small,
|
||||
large: styles.large,
|
||||
tiny: styles.tiny,
|
||||
none: '',
|
||||
none: "",
|
||||
},
|
||||
textDecoration: {
|
||||
underline: styles.underline,
|
||||
@@ -38,7 +38,7 @@ export const linkVariants = cva(styles.link, {
|
||||
},
|
||||
},
|
||||
defaultVariants: {
|
||||
color: 'Text/Interactive/Default',
|
||||
size: 'large',
|
||||
color: "Text/Interactive/Default",
|
||||
size: "large",
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user