@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.15 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036q-.016-.004-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092q.019.005.029-.008l.004-.014-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014-.034.614q.001.018.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M17.278 2.613a1 1 0 0 1 1.89.643l-.038.11-2.61 6.42.657.175c1.05.281 1.924 1.134 2.09 2.298.142 1 .275 2.52.092 4.086-.182 1.552-.69 3.278-1.947 4.546-.462.466-1.125.54-1.573.548-.511.008-1.1-.07-1.705-.19-1.216-.242-2.675-.69-4.054-1.166l-.414-.145-.813-.294-.78-.291-.734-.283-.978-.388a70 70 0 0 1-1.648-.684 1 1 0 0 1-.22-1.704c1.378-1.08 2.67-2.322 3.762-3.469l.528-.564q.13-.139.251-.274l.472-.527.22-.252.594-.695.337-.406a3.1 3.1 0 0 1 2.981-1.087l.199.046.737.197zm-3.959 8.385a1.09 1.09 0 0 0-1.116.378l-.243.293 5.398 1.446-.047-.392-.025-.182c-.036-.253-.215-.491-.51-.61l-.116-.038zM5.565 7.716l.064.14A3.26 3.26 0 0 0 6.866 9.22l.1.058a.068.068 0 0 1 0 .118l-.1.058A3.26 3.26 0 0 0 5.63 10.82l-.064.139a.071.071 0 0 1-.13 0l-.064-.14a3.26 3.26 0 0 0-1.237-1.364l-.1-.058a.068.068 0 0 1 0-.118l.1-.058A3.26 3.26 0 0 0 5.37 7.855l.064-.139a.071.071 0 0 1 .13 0Zm2.832-4.859c.04-.09.166-.09.206 0l.102.222a5.2 5.2 0 0 0 1.97 2.171l.157.093a.108.108 0 0 1 0 .189l-.158.092a5.2 5.2 0 0 0-1.97 2.172l-.1.222a.113.113 0 0 1-.207 0l-.102-.222a5.2 5.2 0 0 0-1.97-2.172l-.158-.092a.108.108 0 0 1 0-.189l.159-.093a5.2 5.2 0 0 0 1.97-2.171l.1-.222Z"/>
</G>
</Svg>);
});
Icon.displayName = 'BroomFill';
/**
* MingCute Icon: Broom Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const BroomFill = Icon;