Files
clinicpro/assets/admin/components/ui/PageHeader.tsx
T

49 lines
1.7 KiB
TypeScript

import React from 'react';
import { Link } from 'react-router-dom';
import { ChevronLeftIcon } from '@heroicons/react/24/outline';
interface Crumb {
label: string;
to?: string;
}
interface Props {
title: string;
breadcrumbs?: Crumb[];
action?: React.ReactNode;
description?: string;
}
export default function PageHeader({ title, breadcrumbs, action, description }: Props) {
return (
<div style={{ display: 'flex', alignItems: 'flex-start', justifyContent: 'space-between', gap: 16, marginBottom: 24 }}>
<div style={{ minWidth: 0 }}>
{breadcrumbs && breadcrumbs.length > 0 && (
<nav style={{ display: 'flex', alignItems: 'center', gap: 4, marginBottom: 6, fontSize: 12, color: 'var(--text-3)' }}>
{breadcrumbs.map((crumb, i) => (
<React.Fragment key={i}>
{i > 0 && <ChevronLeftIcon style={{ width: 12, height: 12 }} />}
{crumb.to ? (
<Link to={crumb.to} style={{ color: 'var(--text-3)', textDecoration: 'none' }}
onMouseEnter={(e) => (e.currentTarget.style.color = 'var(--primary)')}
onMouseLeave={(e) => (e.currentTarget.style.color = 'var(--text-3)')}
>
{crumb.label}
</Link>
) : (
<span style={{ color: 'var(--text)', fontWeight: 600 }}>{crumb.label}</span>
)}
</React.Fragment>
))}
</nav>
)}
<h1 className="section-title">{title}</h1>
{description && (
<p style={{ fontSize: 13, color: 'var(--text-3)', marginTop: 4 }}>{description}</p>
)}
</div>
{action && <div style={{ flexShrink: 0 }}>{action}</div>}
</div>
);
}