@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 2.68 kB
JavaScript
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="M7.79 15.714c-.144-.455-.24-1.039-.245-1.339-.006-.299.06-.797.06-.797l-4.509 3.69c-.787.636-1.846.635-2.344-.004-.491-.628-.24-1.62.54-2.217l8.293-6.364-4.628.006c-.785-.003-1.298-.532-1.15-1.17.143-.626.869-1.121 1.624-1.122l9.146-.01-2.995-2.439c-.466-.382-.407-.989.118-1.355.518-.363 1.31-.364 1.782-.002l7.204 5.531-.002.001a7.4 7.4 0 0 1 1.775 1.958 6.82 6.82 0 0 1 1.021 4.13 6.7 6.7 0 0 1-.287 1.479 7.1 7.1 0 0 1-1.526 2.647A7.9 7.9 0 0 1 19 20.263a8.6 8.6 0 0 1-3.505.74 8.6 8.6 0 0 1-3.508-.728 7.9 7.9 0 0 1-2.67-1.918 7.1 7.1 0 0 1-1.527-2.643m7.703 1.815c1.408-.003 2.708-.54 3.637-1.486.454-.462.787-.992.993-1.558.201-.555.28-1.143.229-1.736a4.1 4.1 0 0 0-.5-1.634 4.5 4.5 0 0 0-1.104-1.31 5.14 5.14 0 0 0-3.257-1.127 5.15 5.15 0 0 0-3.255 1.136c-.46.377-.834.822-1.105 1.314a4.1 4.1 0 0 0-.27 3.373c.206.564.54 1.094.994 1.554.929.945 2.23 1.477 3.638 1.474m-2.018-6.625a3.28 3.28 0 0 1 2.12-.759c.815 0 1.564.288 2.12.759.566.479.942 1.155.985 1.92.043.79-.274 1.521-.83 2.064a3.25 3.25 0 0 1-2.275.899 3.25 3.25 0 0 1-2.277-.899c-.556-.543-.872-1.275-.828-2.062.043-.768.418-1.443.985-1.922m0 0c-.567.479-.942 1.155-.985 1.922-.044.787.272 1.52.829 2.062a3.25 3.25 0 0 0 2.276.899c.903 0 1.709-.347 2.276-.899.555-.543.872-1.275.83-2.063-.044-.766-.42-1.442-.986-1.921a3.28 3.28 0 0 0-2.12-.759 3.28 3.28 0 0 0-2.12.759m-5.686 4.81c-.143-.455-.239-1.039-.244-1.339-.006-.299.06-.797.06-.797l-4.509 3.69c-.787.636-1.846.635-2.344-.004-.491-.628-.24-1.62.54-2.217l8.293-6.364-4.628.006c-.785-.003-1.298-.532-1.15-1.17.143-.626.869-1.121 1.624-1.122l9.146-.01-2.995-2.439c-.466-.382-.407-.989.118-1.355.518-.363 1.31-.364 1.782-.002l7.204 5.531-.002.001a7.4 7.4 0 0 1 1.775 1.958 6.82 6.82 0 0 1 1.021 4.13 6.7 6.7 0 0 1-.287 1.479 7.1 7.1 0 0 1-1.526 2.647A7.9 7.9 0 0 1 19 20.263a8.6 8.6 0 0 1-3.505.74 8.6 8.6 0 0 1-3.508-.728 7.9 7.9 0 0 1-2.67-1.918 7.1 7.1 0 0 1-1.527-2.643m7.704 1.815c1.408-.003 2.708-.54 3.637-1.486.454-.462.787-.992.993-1.558.201-.555.28-1.143.229-1.736a4.1 4.1 0 0 0-.5-1.634 4.5 4.5 0 0 0-1.104-1.31 5.14 5.14 0 0 0-3.257-1.127 5.15 5.15 0 0 0-3.255 1.136c-.46.377-.834.822-1.105 1.314a4.1 4.1 0 0 0-.27 3.373c.206.564.54 1.094.994 1.554.929.945 2.23 1.477 3.638 1.474"/>
</Svg>);
});
Icon.displayName = 'BlenderFill';
/**
* Remix Icon: Blender Fill
* @see {@link https://remixicon.com/icon/blender-fill Remix Icon Docs}
*/
export const BlenderFill = Icon;