--- export interface Props { variant?: "text" | "card" | "circle" | "rect"; width?: string; height?: string; class?: string; } const { variant = "text", width, height, class: className = "", } = Astro.props; const style: Record = {}; if (width) style.width = width; if (height) style.height = height; ---