feat(SW-340): Added Hotel Card Listing on map
This commit is contained in:
15
components/HotelReservation/HotelCard/variants.ts
Normal file
15
components/HotelReservation/HotelCard/variants.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { cva } from "class-variance-authority"
|
||||
|
||||
import styles from "./hotelCard.module.css"
|
||||
|
||||
export const hotelCardVariants = cva(styles.card, {
|
||||
variants: {
|
||||
type: {
|
||||
listing: styles.listing,
|
||||
map: styles.map,
|
||||
},
|
||||
},
|
||||
defaultVariants: {
|
||||
type: "listing",
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user