@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.06 kB
JavaScript
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" fillRule="evenodd">
<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="M13.483 4.64a4 4 0 0 0-.264.523c.532.144 1.033.38 1.493.688.945-.616 2.038-.93 3.177-.73 1.673.295 2.865 1.591 3.527 3.17.666 1.591.864 3.6.5 5.664s-1.237 3.884-2.407 5.15c-1.162 1.258-2.726 2.068-4.398 1.773a4 4 0 0 1-1.065-.349A4.7 4.7 0 0 1 12 21c-.726 0-1.415-.17-2.045-.47a4 4 0 0 1-1.066.348c-1.672.295-3.236-.515-4.398-1.772-1.17-1.267-2.044-3.087-2.407-5.15-.364-2.065-.166-4.074.5-5.664.662-1.58 1.854-2.876 3.527-3.17 1.139-.201 2.232.113 3.177.73a5 5 0 0 1 1.848-.77c.138-.51.368-1.032.632-1.471.222-.372.505-.745.843-1.039C12.939 2.288 13.414 2 14 2a1 1 0 0 1 .039 2c-.245.12-.423.417-.556.64M8.5 12.598a1 1 0 0 1-1.366-.366l-1-1.732a1 1 0 0 1 1.125-1.466l2.732.732a1 1 0 0 1 .241 1.832zm8.366-.366a1 1 0 0 1-1.366.366l-1.732-1a1 1 0 0 1 .241-1.832l2.732-.732a1 1 0 0 1 1.125 1.466zm-7.317 3.68a.515.515 0 0 0 .673-.048 2.515 2.515 0 0 1 3.556 0 .515.515 0 0 0 .673.048l.95-.712a1 1 0 0 1 1.2 1.6l-.95.712a2.515 2.515 0 0 1-3.287-.234.515.515 0 0 0-.728 0 2.515 2.515 0 0 1-3.287.234L7.4 16.8a1 1 0 1 1 1.2-1.6z"/>
</G>
</Svg>);
});
Icon.displayName = 'PumpkinLanternFill';
/**
* MingCute Icon: Pumpkin Lantern Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const PumpkinLanternFill = Icon;