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