import { BaseIcon } from './BaseIcon'; interface ClockIconProps { size?: number; className?: string; disabled?: boolean; } export function ClockIcon({ size = 24, className = '', disabled = false }: ClockIconProps) { return ( ); }