Files
fotospiel-app/resources/js/components/heading-small.tsx
2025-09-08 14:03:43 +02:00

9 lines
323 B
TypeScript

export default function HeadingSmall({ title, description }: { title: string; description?: string }) {
return (
<header>
<h3 className="mb-0.5 text-base font-medium">{title}</h3>
{description && <p className="text-sm text-muted-foreground">{description}</p>}
</header>
);
}