--- interface Props { height?: number; width?: number; fill?: string; className?: string; } const { height = 16, width = 16, fill = "currentColor", className = "" } = Astro.props; ---