Files
armarium-website/src/components/ui/data-display/GoogleMap/googleMap.variants.ts
T
2026-04-06 07:31:47 +00:00

22 lines
479 B
TypeScript

import { cva, type VariantProps } from 'class-variance-authority';
export const googleMapVariants = cva(
'relative w-full overflow-hidden rounded-xl border border-border',
{
variants: {
size: {
sm: 'h-[250px]',
md: 'h-[400px]',
lg: 'h-[500px]',
xl: 'h-[600px]',
full: 'h-[70vh]',
},
},
defaultVariants: {
size: 'md',
},
}
);
export type GoogleMapVariants = VariantProps<typeof googleMapVariants>;