mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 12:47:13 +01:00
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
import { Column, Grid, Heading, Icon, Row, Text } from '@umami/react-zen';
|
|
import type { ReactNode } from 'react';
|
|
|
|
export function PageHeader({
|
|
title,
|
|
description,
|
|
label,
|
|
icon,
|
|
showBorder = true,
|
|
children,
|
|
}: {
|
|
title: string;
|
|
description?: string;
|
|
label?: ReactNode;
|
|
icon?: ReactNode;
|
|
showBorder?: boolean;
|
|
allowEdit?: boolean;
|
|
className?: string;
|
|
children?: ReactNode;
|
|
}) {
|
|
return (
|
|
<Grid
|
|
columns={{ xs: '1fr', md: '1fr 1fr' }}
|
|
paddingY="6"
|
|
marginBottom="6"
|
|
border={showBorder ? 'bottom' : undefined}
|
|
>
|
|
<Column gap="2">
|
|
{label}
|
|
<Row alignItems="center" gap="3">
|
|
{icon && (
|
|
<Icon size="md" color="muted">
|
|
{icon}
|
|
</Icon>
|
|
)}
|
|
{title && <Heading size={{ xs: '2', md: '3', lg: '4' }}>{title}</Heading>}
|
|
</Row>
|
|
{description && (
|
|
<Text color="muted" truncate style={{ maxWidth: 600 }} title={description}>
|
|
{description}
|
|
</Text>
|
|
)}
|
|
</Column>
|
|
<Row justifyContent="flex-end">{children}</Row>
|
|
</Grid>
|
|
);
|
|
}
|