iconClubhouse.tsx 626 B

123456789101112131415161718192021
  1. import React from 'react';
  2. import SvgIcon from './svgIcon';
  3. type Props = React.ComponentProps<typeof SvgIcon>;
  4. const IconClubhouse = React.forwardRef(function IconClubhouse(
  5. props: Props,
  6. ref: React.Ref<SVGSVGElement>
  7. ) {
  8. return (
  9. <SvgIcon {...props} ref={ref}>
  10. <path d="M1.19,11.89a1.16,1.16,0,1,0,1.15,1.16A1.16,1.16,0,0,0,1.19,11.89Z" />
  11. <path d="M15.43,1.79,8.14,4.12V1.82L.29,4.33V11L7.06,8.82v2.29L16,8.27,13.56,5.91ZM7.06,7.68,1.38,9.5V5.12L7.06,3.3Zm6.89.1L8.14,9.63V5.26L13.5,3.55,12.27,6.14Z" />
  12. </SvgIcon>
  13. );
  14. });
  15. IconClubhouse.displayName = 'IconClubhouse';
  16. export {IconClubhouse};