Initial release — Astro Rocket v1.0.0

This commit is contained in:
Claude
2026-04-06 07:31:47 +00:00
commit ddd0c22311
275 changed files with 38839 additions and 0 deletions
@@ -0,0 +1,21 @@
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>;