@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 691 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const AnticlockwiseLine = /* @__PURE__ */ memo(function AnticlockwiseLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M11 9h10a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1V10a1 1 0 0 1 1-1m1 2v8h8v-8zm-6-.414 1.828-1.829 1.415 1.415L5 14.414.757 10.172l1.415-1.415L4 10.586V8a5 5 0 0 1 5-5h4v2H9a3 3 0 0 0-3 3z"/>
</Svg>);
});
/**
* Remix Icon: Anticlockwise Line
* @see {@link https://remixicon.com/icon/anticlockwise-line Remix Icon Docs}
*/
export { AnticlockwiseLine };