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