UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 1.3 kB
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="m4.713 7.128-.246.566a.506.506 0 0 1-.934 0l-.246-.566a4.36 4.36 0 0 0-2.22-2.25l-.759-.339a.53.53 0 0 1 0-.963l.717-.319A4.37 4.37 0 0 0 3.276.931L3.53.32a.506.506 0 0 1 .942 0l.253.61a4.37 4.37 0 0 0 2.25 2.327l.718.32a.53.53 0 0 1 0 .962l-.76.338a4.36 4.36 0 0 0-2.219 2.251m10.601 2.405.143.142a5.5 5.5 0 0 1 1.356 5.245 5.505 5.505 0 0 1-5.311 4.078c-2.036 0-4.714-.625-6.973-1.514 1.205-1.414 1.645-2.809 1.8-4.679.037-.451.06-.63.103-.79.793-2.962 3.585-4.61 6.492-3.831.93.25 1.742.724 2.39 1.349m2.914-7.162-4.94 3.842c-3.946-.974-7.73 1.333-8.788 5.284-.102.38-.134.765-.167 1.169-.115 1.394-.247 3.005-3.333 5.33 2.5 1.5 7 3.002 10.502 3.002a7.505 7.505 0 0 0 7.283-9.291l3.84-4.938a1 1 0 0 0-.082-1.321l-2.994-2.994a1 1 0 0 0-1.321-.083m-1.333 5.914a8 8 0 0 0-.194-.194l-1.124-1.124 3.182-2.475 1.746 1.746L18.03 9.42z"/> </Svg>); }); Icon.displayName = 'BrushAiLine'; /** * Remix Icon: Brush Ai Line * @see {@link https://remixicon.com/icon/brush-ai-line Remix Icon Docs} */ export const BrushAiLine = Icon;