Files
roxane/resources/js/components/heading-small.tsx

17 lines
373 B
TypeScript
Raw Permalink Normal View History

2025-10-22 17:09:48 +02:00
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>
);
}