mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-06-09 23:06:01 +00:00
22 lines
430 B
TypeScript
22 lines
430 B
TypeScript
export default function PageDescription({
|
|
title,
|
|
subtitle,
|
|
icon,
|
|
}: {
|
|
title?: string;
|
|
subtitle?: string;
|
|
icon?: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<div className="space-y-2">
|
|
<h1 className="text-2xl font-semibold flex items-center gap-1">
|
|
<span className="text-primary">{icon}</span>
|
|
{title}
|
|
</h1>
|
|
<p className="text-sm max-w-2xl text-muted-foreground leading-relaxed">
|
|
{subtitle}
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|