Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 8x | import type { ReactNode } from "react";
import { cn } from "../../lib/utils";
interface PageHeaderProps {
title: string;
description?: string;
icon?: ReactNode;
actions?: ReactNode;
className?: string;
}
export function PageHeader({
title,
description,
icon,
actions,
className,
}: PageHeaderProps) {
return (
<div
className={cn(
"flex flex-col sm:flex-row sm:items-center sm:justify-between gap-4",
className,
)}
>
<div>
<h1 className="text-xl sm:text-2xl font-bold text-foreground-default flex items-center gap-2">
{icon}
{title}
</h1>
{description && (
<p className="mt-1 text-sm sm:text-base text-foreground-muted">
{description}
</p>
)}
</div>
{actions && (
<div className="flex items-center gap-2">{actions}</div>
)}
</div>
);
}
|