import React from 'react'; interface IProps { size?: number; color?: string; } const BackIcon: React.FC = ({ size = 24, color = 'currentColor' }) => { return ( ); }; export default BackIcon;