File size: 482 Bytes
f4102c2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | export function PageHeader({
title,
subtitle,
action,
}: {
title: string;
subtitle?: string;
action?: React.ReactNode;
}) {
return (
<div className="flex flex-wrap items-end justify-between gap-4 border-b border-border pb-4">
<div>
<h1 className="text-2xl font-bold tracking-tight">{title}</h1>
{subtitle && (
<p className="mt-1 text-sm text-muted-foreground">{subtitle}</p>
)}
</div>
{action}
</div>
);
}
|