@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.96 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M20.894 20.448A1 1 0 0 1 20 21H5.5c-.632 0-.932-.563-1.2-1.045a11.313 11.313 0 0 1-.738-1.616c-.5-1.364-.917-3.293-.548-5.503a11.633 11.633 0 0 1 1.428-3.993c.655-1.109 1.931-1.42 2.991-1.137l2.187.586 1.035-3.864a3 3 0 1 1 5.796 1.553l-1.036 3.864 1.358.364c1.654.443 2.51 2.119 2.278 3.655-.11.73-.154 1.447-.065 1.968.114.67.531 1.537.985 2.306.38.644.74 1.142.816 1.244.227.308.281.719.107 1.066m-7.082-16.21a1 1 0 0 0-1.225.708l-1.294 4.83a1 1 0 0 1-1.225.707l-3.152-.845c-.383-.103-.646.043-.751.221a9.107 9.107 0 0 0-.703 1.495l11.51 3.053c.025-.294.061-.578.101-.842.105-.691-.297-1.285-.818-1.424l-2.323-.623a1 1 0 0 1-.707-1.225l1.294-4.83a1 1 0 0 0-.707-1.224Zm3.272 12.267L4.966 13.291c-.26 1.724.067 3.248.474 4.36.208.569.434 1.022.605 1.329l.012.02h1.7c-.377-.792-.763-1.866-.77-2.993a1 1 0 1 1 1.999-.014c.005.776.307 1.614.656 2.308.138.276.277.515.392.7h8.125c-.403-.7-.86-1.61-1.075-2.496"/>
</G>
</Svg>);
};
Icon.displayName = 'Brush3Line';
/**
* MingCute Icon: Brush 3 Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Brush3Line = memo(Icon);