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