--- import type { Badge } from '../schemas/badge'; interface Props { variant?: Badge['variant'] | 'outline'; text?: string; } const { variant = 'default', text } = Astro.props; ---