import React from 'react'; interface IProp { size?: number; } const ClockIcon: React.FC = ({ size }) => { return ( ); }; export default ClockIcon;