termix / src /settings /components /SectionHeader.tsx
lekmikdok's picture
Prepare Terax for web deployment
50fe3c9 verified
Raw
History Blame Contribute Delete
384 Bytes
type Props = {
title: string;
description?: string;
};
export function SectionHeader({ title, description }: Props) {
return (
<div className="flex flex-col gap-1">
<h1 className="text-[18px] font-semibold tracking-tight">{title}</h1>
{description ? (
<p className="text-[12px] text-muted-foreground">{description}</p>
) : null}
</div>
);
}