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