mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 11:01:45 +00:00
Padronização de peso tipográfico em títulos, rótulos de seção, nomes de entidades e valores monetários em toda a interface. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
418 B
TypeScript
22 lines
418 B
TypeScript
export default function PageDescription({
|
|
title,
|
|
subtitle,
|
|
icon,
|
|
}: {
|
|
title?: string;
|
|
subtitle?: string;
|
|
icon?: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<div>
|
|
<h1 className="text-2xl font-semibold flex items-center gap-1 ">
|
|
<span className="text-primary">{icon}</span>
|
|
{title}
|
|
</h1>
|
|
<h2 className="text-sm max-w-2xl text-muted-foreground leading-relaxed mt-1.5">
|
|
{subtitle}
|
|
</h2>
|
|
</div>
|
|
);
|
|
}
|