import * as React from 'react'; import SvgIcon from './svgIcon'; type Props = React.ComponentProps; const IconEdit = React.forwardRef(function IconEdit( props: Props, ref: React.Ref ) { return ( ); }); IconEdit.displayName = 'IconEdit'; export {IconEdit};