mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
Setup Inertia (#593)
This commit is contained in:
8
resources/js/components/heading-small.tsx
Normal file
8
resources/js/components/heading-small.tsx
Normal file
@ -0,0 +1,8 @@
|
||||
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-muted-foreground text-sm">{description}</p>}
|
||||
</header>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user