iconDiamond.tsx 465 B

123456789101112131415
  1. import * as React from 'react';
  2. import SvgIcon, {SVGIconProps} from './svgIcon';
  3. const IconDiamond = React.forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  4. return (
  5. <SvgIcon {...props} ref={ref}>
  6. <path d="M8,16a.74.74,0,0,1-.53-.22L.21,8.53a.75.75,0,0,1,0-1.06L7.47.21a.75.75,0,0,1,1.06,0l7.26,7.26a.75.75,0,0,1,0,1.06L8.53,15.79A.74.74,0,0,1,8,16Z" />
  7. </SvgIcon>
  8. );
  9. });
  10. IconDiamond.displayName = 'IconDiamond';
  11. export {IconDiamond};