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