UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.25 kB
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"> <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="M20.626 2.483a1.094 1.094 0 0 1 1.39 1.39l-.165.471-.26.696-.163.415-.185.452-.205.482-.224.505-.12.258c-.677 1.455-1.61 3.156-2.727 4.33-1.065 1.12-2.673 2.153-3.96 2.886a5 5 0 0 1-1.36 4.557c-2.27 2.27-4.807 2.27-6.694 1.71-1.43-.426-2.605-1.198-3.729-2.148a.394.394 0 0 1 .027-.624l.332-.237c.728-.53 1.479-1.182 1.658-2.08.034-.166.055-.334.073-.502l.05-.507a6 6 0 0 1 .074-.504c.138-.689.43-1.471 1.137-2.18a5 5 0 0 1 4.557-1.36c.733-1.287 1.765-2.895 2.886-3.96 1.174-1.116 2.875-2.05 4.33-2.728l.513-.233.25-.11.482-.205.664-.27.576-.22.59-.213zm-7.915 7.62c-.259.395-.505.798-.732 1.19a5 5 0 0 1 1.228 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-.603zm6.71-5.025c-.383.159-.799.34-1.228.54-1.41.657-2.867 1.48-3.797 2.364a8 8 0 0 0-.47.493c.362.2.782.49 1.195.904.414.413.704.833.904 1.195a8 8 0 0 0 .493-.47c.884-.93 1.707-2.388 2.364-3.797.2-.43.38-.846.54-1.229M6 1a1 1 0 0 1 .898.56l.048.117.13.378a3 3 0 0 0 1.684 1.8l.185.07.378.129a1 1 0 0 1 .117 1.844l-.117.048-.378.13a3 3 0 0 0-1.8 1.684l-.07.185-.129.378a1 1 0 0 1-1.844.117l-.048-.117-.13-.378a3 3 0 0 0-1.684-1.8l-.185-.07-.378-.129a1 1 0 0 1-.117-1.844l.117-.048.378-.13a3 3 0 0 0 1.8-1.684l.07-.185.129-.378A1 1 0 0 1 6 1"/> </G> </Svg>); }); Icon.displayName = 'PaintBrushAiFill'; /** * MingCute Icon: Paint Brush Ai Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const PaintBrushAiFill = Icon;