@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 532 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Loader4Line = /* @__PURE__ */ memo(function Loader4Line(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M18.364 5.636 16.95 7.05A7 7 0 1 0 19 12h2a9 9 0 1 1-2.636-6.364"/>
</Svg>);
});
/**
* Remix Icon: Loader 4 Line
* @see {@link https://remixicon.com/icon/loader-4-line Remix Icon Docs}
*/
export { Loader4Line };