You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
321 B
17 lines
321 B
import { cn } from "@app/core/utils/cn.ts";
|
|
|
|
export interface H4Props {
|
|
className?: string;
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export const H4 = ({ className, children }: H4Props) => (
|
|
<h4
|
|
className={cn(
|
|
"scroll-m-20 text-xl font-semibold tracking-tight",
|
|
className,
|
|
)}
|
|
>
|
|
{children}
|
|
</h4>
|
|
);
|
|
|