--- import type { SvgComponent } from "astro/types"; interface Props { SvgComponent: SvgComponent; size?: number; } const { size = 24, SvgComponent } = Astro.props; ---