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