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