60 lines
1.4 KiB
TypeScript
60 lines
1.4 KiB
TypeScript
|
|
|
|
import { LucideIcon } from 'lucide-react';
|
|
import React from 'react';
|
|
import { Box } from './Box';
|
|
import { Heading } from './Heading';
|
|
import { Icon } from './Icon';
|
|
import { Stack } from './Stack';
|
|
import { Surface } from './Surface';
|
|
import { Text } from './Text';
|
|
|
|
interface PageHeaderProps {
|
|
title: string;
|
|
description?: string;
|
|
action?: React.ReactNode;
|
|
icon?: LucideIcon;
|
|
}
|
|
|
|
export function PageHeader({
|
|
title,
|
|
description,
|
|
action,
|
|
icon,
|
|
}: PageHeaderProps) {
|
|
return (
|
|
<Box
|
|
marginBottom={12}
|
|
display="flex"
|
|
flexDirection={{ base: 'col', md: 'row' }}
|
|
alignItems={{ md: 'end' }}
|
|
justifyContent="space-between"
|
|
gap={6}
|
|
borderBottom="1px solid var(--ui-color-border-muted)"
|
|
paddingBottom={8}
|
|
>
|
|
<Box>
|
|
<Box display="flex" alignItems="center" gap={3} marginBottom={2}>
|
|
{icon ? (
|
|
<Icon icon={icon} size={8} intent="primary" />
|
|
) : (
|
|
<Box width={1} height={8} backgroundColor="var(--ui-color-intent-primary)" />
|
|
)}
|
|
<Heading level={1} weight="bold" uppercase>{title}</Heading>
|
|
</Box>
|
|
{description && (
|
|
<Text variant="low" size="lg" uppercase mono letterSpacing="0.2em">
|
|
{description}
|
|
</Text>
|
|
)}
|
|
</Box>
|
|
|
|
{action && (
|
|
<Box display="flex" alignItems="center">
|
|
{action}
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
);
|
|
}
|