import { LucideIcon } from 'lucide-react'; import { Box } from './Box'; import { Icon } from './Icon'; import { Text } from './Text'; export interface NotificationStatProps { label: string; value: string | number; intent?: 'primary' | 'success' | 'critical' | 'low'; } export const NotificationStat = ({ label, value, intent = 'low' }: NotificationStatProps) => ( {label} {value} ); export interface NotificationDeadlineProps { label: string; deadline: string; icon: LucideIcon; } export const NotificationDeadline = ({ label, deadline, icon }: NotificationDeadlineProps) => ( {label} {deadline} );