--- import { cn } from "@/lib/utils"; type Props = { size: "sm" | "md" | "lg" | "xl" | "2xl"; class?: string; }; const { size, class: className } = Astro.props; ---