import type { SVGProps } from "react"; export interface ClockHistoryIconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function ClockHistoryIcon({ className = "", size = 24, color = "currentColor", ...props }: ClockHistoryIconProps) { return ( ); }