import React from 'react'; import { IIcon } from './index'; export const IconSave: React.FC = (props) => { const { className = '', color = '', size = '', ...otherProps } = props; return ( Save Icon ); };