Skip to content

Commit 89d5d6c

Browse files
committed
change class to className
1 parent 3e5f9d1 commit 89d5d6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/js/components/heading-small.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default function HeadingSmall({ title, description }: { title: string; description?: string }) {
22
return (
33
<header>
4-
<h3 class="mb-0.5 text-base font-medium">{title}</h3>
4+
<h3 className="mb-0.5 text-base font-medium">{title}</h3>
55
{description && <p className="text-xs text-muted-foreground">{description}</p>}
66
</header>
77
);

0 commit comments

Comments
 (0)