import { FC, memo } from "react"; type ClockFillProps = { color1?: string; color2?: string; }; const ClockFill: FC = ({ color1 = "#000000", color2 = "#ffffff" }) => { return ( ); }; export default memo(ClockFill);