@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.86 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.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.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.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="m22.017 3.874-.59 1.581a250 250 0 0 1-.732 1.697c-.678 1.455-1.612 3.156-2.727 4.33-1.066 1.12-2.674 2.153-3.962 2.886a5 5 0 0 1-1.36 4.557c-2.27 2.27-4.806 2.27-6.692 1.71-1.43-.426-2.606-1.198-3.73-2.148a.394.394 0 0 1 .027-.624l.5-.362c.672-.507 1.325-1.126 1.49-1.955q.172-1.388.197-1.513c.138-.689.43-1.471 1.138-2.18a5 5 0 0 1 4.556-1.36c.733-1.287 1.766-2.895 2.886-3.96 1.174-1.116 2.875-2.05 4.33-2.728l1.697-.733 1.581-.589a1.094 1.094 0 0 1 1.391 1.39ZM11.98 11.293a5 5 0 0 1 1.227 1.228c.392-.227.795-.473 1.19-.732l-.03-.067a3.3 3.3 0 0 0-.66-.93 3.4 3.4 0 0 0-.817-.603l-.179-.086c-.259.395-.505.798-.732 1.19Zm7.442-6.215c-.383.159-.8.34-1.23.54-1.408.657-2.866 1.48-3.796 2.364a8 8 0 0 0-.47.493c.362.2.782.49 1.195.904.414.413.704.833.904 1.195q.268-.234.493-.47c.884-.93 1.707-2.388 2.364-3.797.2-.43.381-.846.54-1.229"/>
</G>
</Svg>);
});
Icon.displayName = 'PaintBrushFill';
/**
* MingCute Icon: Paint Brush Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const PaintBrushFill = Icon;