type BadgeProps = { label: string } export default function Badge({ label }: BadgeProps) { return ( {label} ) }