mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-07 12:34:52 +02:00
26 lines
682 B
TypeScript
26 lines
682 B
TypeScript
type SettingsSectionTitleProps = {
|
|
title: string | React.ReactNode;
|
|
description: string | React.ReactNode;
|
|
size?: "2xl" | "1xl";
|
|
};
|
|
|
|
export default function SettingsSectionTitle({
|
|
title,
|
|
description,
|
|
size,
|
|
}: SettingsSectionTitleProps) {
|
|
return (
|
|
<div
|
|
className={`space-y-0.5 select-none ${!size || size === "2xl" ? "mb-6 md:mb-12" : ""}`}
|
|
>
|
|
<h2
|
|
className={`text-${
|
|
size ? size : "2xl"
|
|
} font-bold tracking-tight`}
|
|
>
|
|
{title}
|
|
</h2>
|
|
<p className="text-muted-foreground">{description}</p>
|
|
</div>
|
|
);
|
|
}
|