--- import type { HTMLAttributes } from 'astro/types'; interface Props extends HTMLAttributes<"svg"> { size?: number; } const { size = 16, ...attr } = Astro.props; ---