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
16 lines
317 B
TypeScript
16 lines
317 B
TypeScript
import { cva } from "class-variance-authority"
|
|
|
|
import styles from "./hotelCardDialogImage.module.css"
|
|
|
|
export const hotelCardDialogImageVariants = cva(styles.imageContainer, {
|
|
variants: {
|
|
position: {
|
|
top: styles.top,
|
|
left: styles.left,
|
|
},
|
|
},
|
|
defaultVariants: {
|
|
position: "top",
|
|
},
|
|
})
|