UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

17 lines (16 loc) 1.92 kB
import { memo } from 'react'; import Svg, { G, Path } from 'react-native-svg'; const Brush2Line = /* @__PURE__ */ memo(function Brush2Line(_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="M2.808 2.808c.885-.886 2.01-1.33 3.184-1.203 1.161.125 2.225.793 3.056 1.846.888 1.127 1.7 2.732 2.336 4.174.311.704 1.16.874 1.676.475l.093-.081.615-.615a2.5 2.5 0 0 1 3.405-.122l.13.122 4.243 4.242a2.5 2.5 0 0 1 .122 3.405l-.122.13-6.364 6.365a2.5 2.5 0 0 1-3.405.122l-.13-.122-4.243-4.243a2.5 2.5 0 0 1-.118-3.409l.122-.13.61-.611c.5-.5.355-1.439-.393-1.769-1.442-.636-3.047-1.448-4.174-2.336-1.053-.831-1.72-1.895-1.846-3.056-.127-1.174.317-2.3 1.203-3.184M19.07 12 12 19.071l1.06 1.06a.5.5 0 0 0 .708 0l6.364-6.363a.5.5 0 0 0 0-.707zM5.777 3.593c-.498-.054-1.043.117-1.555.629s-.683 1.057-.629 1.555c.056.512.365 1.123 1.096 1.7.92.725 2.332 1.455 3.744 2.078 1.875.827 2.533 3.29 1.132 4.872l-.133.141-.614.614a.5.5 0 0 0-.058.638l.058.07 1.768 1.767 7.07-7.071-1.767-1.768a.5.5 0 0 0-.638-.058l-.069.058-.615.615c-1.571 1.571-4.16.932-5.012-1-.623-1.412-1.353-2.824-2.078-3.744-.577-.731-1.188-1.04-1.7-1.096"/> </G> </Svg>); }); /** * MingCute Icon: Brush 2 Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export { Brush2Line };