@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 604 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M20 10h3l-4 5-4-5h3V8a3 3 0 0 0-3-3h-4V3h4a5 5 0 0 1 5 5zm-7-1a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V10a1 1 0 0 1 1-1z"/>
</Svg>);
});
Icon.displayName = 'ClockwiseFill';
/**
* Remix Icon: Clockwise Fill
* @see {@link https://remixicon.com/icon/clockwise-fill Remix Icon Docs}
*/
export const ClockwiseFill = Icon;