import {forwardRef} from 'react'; import {SvgIcon, SVGIconProps} from './svgIcon'; const IconCalendar = forwardRef((props, ref) => { return ( ); }); IconCalendar.displayName = 'IconCalendar'; export {IconCalendar};