Files
soorya-carpet/resources/js/components/heading-small.tsx
Chief-spartan-117 2162084b95
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
INit
2025-09-28 19:55:43 +05:45

17 lines
373 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>
);
}