import React from 'react'; interface Props { className?: string, color?: string, width?: number, height?: number } const HistoryIcon: React.FC = ({ height, width, className, color = 'currentColor' }) => { return ( ); }; export default HistoryIcon;