UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 1.32 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="M13.817 21.835q-.16.005-.317.005c-1.073 0-2.374-.62-3.42-1.758A6.75 6.75 0 0 1 8.3 15.5c0-1.418.518-2.565 1.201-3.406C9.558 14.58 11.86 17.7 16.5 17.7c1.678 0 2.717-.452 3.28-.697.208-.09.35-.153.436-.153.184 0 .284.1.284.3 0 .187-.101.321-.426.752l-.073.098a10 10 0 0 1-6.184 3.835m-3.115.081C5.792 21.28 2 17.084 2 12c0-1.28.74-2.329 1.897-3.08C5.058 8.164 6.587 7.75 8 7.75c2.276 0 3.635.765 4.428 1.647q.075.084.144.169A2.5 2.5 0 0 0 12 9.5h-.004a2.5 2.5 0 0 0-1.2.309 5 5 0 0 0-.236.117 6 6 0 0 0-1.51 1.168A6.35 6.35 0 0 0 7.3 15.5c0 2.137.855 3.965 2.044 5.258.414.45.874.841 1.358 1.159m3.15-8.32c.266-.28.648-.684.648-1.596 0-.86-.338-2.171-1.328-3.272C12.165 7.61 10.524 6.75 8 6.75c-1.587 0-3.308.46-4.647 1.33q-.422.274-.79.605C3.93 4.79 7.639 2 12 2c5.523 0 10 4 10 8.5 0 2.8-2.2 4.85-5 4.85-2 0-3.4-.65-3.4-1.35 0-.14.11-.254.252-.404"/> </Svg>); }); Icon.displayName = 'EdgeNewFill'; /** * Remix Icon: Edge New Fill * @see {@link https://remixicon.com/icon/edge-new-fill Remix Icon Docs} */ export const EdgeNewFill = Icon;