iconNot.tsx 563 B

1234567891011121314151617181920
  1. import * as React from 'react';
  2. import SvgIcon from './svgIcon';
  3. type Props = React.ComponentProps<typeof SvgIcon>;
  4. const IconNot = React.forwardRef(function IconNot(
  5. props: Props,
  6. ref: React.Ref<SVGSVGElement>
  7. ) {
  8. return (
  9. <SvgIcon {...props} ref={ref}>
  10. <path d="M8,0a8,8,0,1,0,8,8A8,8,0,0,0,8,0ZM1.53,8A6.47,6.47,0,0,1,8,1.53a6.4,6.4,0,0,1,4,1.4L2.93,12A6.4,6.4,0,0,1,1.53,8ZM8,14.47a6.38,6.38,0,0,1-4-1.4L13.07,4a6.38,6.38,0,0,1,1.4,4A6.47,6.47,0,0,1,8,14.47Z" />
  11. </SvgIcon>
  12. );
  13. });
  14. IconNot.displayName = 'IconNot';
  15. export {IconNot};