diff options
| author | Fuwn <[email protected]> | 2026-01-24 13:09:50 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-24 13:09:50 +0000 |
| commit | 396acf3bbbe00a192cb0ea0a9ccf91b1d8d2850b (patch) | |
| tree | b9df4ca6a70db45cfffbae6fdd7252e20fb8e93c /src/components/common/PageHeader.tsx | |
| download | umami-396acf3bbbe00a192cb0ea0a9ccf91b1d8d2850b.tar.xz umami-396acf3bbbe00a192cb0ea0a9ccf91b1d8d2850b.zip | |
Created from https://vercel.com/new
Diffstat (limited to 'src/components/common/PageHeader.tsx')
| -rw-r--r-- | src/components/common/PageHeader.tsx | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/components/common/PageHeader.tsx b/src/components/common/PageHeader.tsx new file mode 100644 index 0000000..9216788 --- /dev/null +++ b/src/components/common/PageHeader.tsx @@ -0,0 +1,58 @@ +import { Column, Grid, Heading, Icon, Row, Text } from '@umami/react-zen'; +import type { ReactNode } from 'react'; +import { LinkButton } from './LinkButton'; + +export function PageHeader({ + title, + description, + label, + icon, + showBorder = true, + titleHref, + children, +}: { + title: string; + description?: string; + label?: ReactNode; + icon?: ReactNode; + showBorder?: boolean; + titleHref?: string; + 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 && titleHref ? ( + <LinkButton href={titleHref} variant="quiet"> + <Heading size={{ xs: '2', md: '3', lg: '4' }}>{title}</Heading> + </LinkButton> + ) : ( + 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" alignItems="center"> + {children} + </Row> + </Grid> + ); +} |