@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 605 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Loader3Line = /* @__PURE__ */ memo(function Loader3Line(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M3.055 13H5.07a7.002 7.002 0 0 0 13.858 0h2.016a9.001 9.001 0 0 1-17.89 0m0-2a9.001 9.001 0 0 1 17.89 0h-2.016A7.002 7.002 0 0 0 5.07 11z"/>
</Svg>);
});
/**
* Remix Icon: Loader 3 Line
* @see {@link https://remixicon.com/icon/loader-3-line Remix Icon Docs}
*/
export { Loader3Line };