We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98c5d4b commit 8e33495Copy full SHA for 8e33495
resources/js/components/heading.tsx
@@ -1,13 +1,10 @@
1
-import { Separator } from '@/components/ui/separator';
2
-
3
export default function Heading({ title, description }: { title: string; description?: string }) {
4
return (
5
<>
6
- <div className="space-y-0.5">
7
- <h2 className="text-base font-semibold tracking-tight sm:text-lg lg:text-xl">{title}</h2>
8
- {description && <p className="text-muted-foreground text-xs md:text-sm">{description}</p>}
+ <div className="mb-8 space-y-0.5">
+ <h2 className="text-xl font-semibold tracking-tight">{title}</h2>
+ {description && <p className="text-muted-foreground text-sm">{description}</p>}
9
</div>
10
- <Separator className="my-6" />
11
</>
12
);
13
}
0 commit comments