iconBitbucket.tsx 558 B

1234567891011121314151617181920
  1. import * as React from 'react';
  2. import SvgIcon from './svgIcon';
  3. type Props = React.ComponentProps<typeof SvgIcon>;
  4. const IconBitbucket = React.forwardRef(function IconBitbucket(
  5. props: Props,
  6. ref: React.Ref<SVGSVGElement>
  7. ) {
  8. return (
  9. <SvgIcon {...props} ref={ref}>
  10. <path d="M15.56.82H.52A.51.51,0,0,0,0,1.32.19.19,0,0,0,0,1.4L2.18,14.61a.7.7,0,0,0,.68.58H13.3a.52.52,0,0,0,.51-.43L16,1.41A.5.5,0,0,0,15.56.82ZM9.68,10.35H6.35l-.9-4.71h5Z" />
  11. </SvgIcon>
  12. );
  13. });
  14. IconBitbucket.displayName = 'IconBitbucket';
  15. export {IconBitbucket};