--- export interface Props { tag: string; tagName: string; size?: "sm" | "lg"; } const { tag, tagName, size = "sm" } = Astro.props; ---