initial commit
This commit is contained in:
commit
2e0cbc254c
174 changed files with 27742 additions and 0 deletions
16
resources/js/components/heading-small.tsx
Normal file
16
resources/js/components/heading-small.tsx
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue