import { Calendar } from 'lucide-react'; import { Box } from './Box'; import { Icon } from './Icon'; import { Text } from './Text'; import { Stack } from './Stack'; export interface DateHeaderProps { date: string; showIcon?: boolean; } export const DateHeader = ({ date, showIcon = true }: DateHeaderProps) => { return ( {showIcon && ( )} {date} ); };