--- // src/components/Badge.astro interface Props { label: string; featured?: boolean; } const { label, featured = false } = Astro.props; --- {label} {featured && ★ Featured} --- import Badge from '../components/Badge.astro'; ---