iconTrello.tsx 530 B

123456789101112131415
  1. import * as React from 'react';
  2. import SvgIcon, {SVGIconProps} from './svgIcon';
  3. const IconTrello = React.forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  4. return (
  5. <SvgIcon {...props} ref={ref}>
  6. <path d="M14,0H2A2,2,0,0,0,0,2V14a2,2,0,0,0,2,2H14a2,2,0,0,0,2-2V2A2,2,0,0,0,14,0ZM7,12.12a1,1,0,0,1-1,1H3a1,1,0,0,1-1-1V3a1,1,0,0,1,1-1H6A1,1,0,0,1,7,3Zm7-4a1,1,0,0,1-1,1H10a1,1,0,0,1-1-1V3a1,1,0,0,1,1-1h3a1,1,0,0,1,1,1Z" />
  7. </SvgIcon>
  8. );
  9. });
  10. IconTrello.displayName = 'IconTrello';
  11. export {IconTrello};