iconRefresh.tsx 756 B

1234567891011121314151617
  1. import {forwardRef} from 'react';
  2. import type {SVGIconProps} from './svgIcon';
  3. import {SvgIcon} from './svgIcon';
  4. const IconRefresh = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
  5. return (
  6. <SvgIcon {...props} ref={ref}>
  7. <path d="m9.66,4.87c0,.41.34.75.75.75h4.01c.41,0,.75-.34.75-.75V.85c0-.41-.34-.75-.75-.75s-.75.34-.75.75v3.26h-3.26c-.41,0-.75.34-.75.75Z" />
  8. <path d="m.11,8c0,4.35,3.54,7.9,7.9,7.9s7.9-3.54,7.9-7.9c0-.41-.34-.75-.75-.75s-.75.34-.75.75c0,3.53-2.87,6.4-6.4,6.4S1.61,11.53,1.61,8,4.48,1.6,8.01,1.6c2.46,0,4.66,1.37,5.75,3.59.18.37.63.53,1,.34.37-.18.53-.63.34-1C13.76,1.8,11.04.1,8.01.1c-4.35,0-7.9,3.54-7.9,7.9Z" />
  9. </SvgIcon>
  10. );
  11. });
  12. IconRefresh.displayName = 'IconRefresh';
  13. export {IconRefresh};