@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.73 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}>
<G fill="none">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M14 2a1 1 0 0 1 .039 2c-.163.08-.297.239-.407.401l-.15.239a4.044 4.044 0 0 0-.263.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.664-.364 2.064-1.237 3.884-2.407 5.15-1.162 1.258-2.726 2.068-4.398 1.773a3.97 3.97 0 0 1-1.065-.349A4.714 4.714 0 0 1 12 21c-.726 0-1.415-.17-2.045-.47a3.97 3.97 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.73a4.99 4.99 0 0 1 1.848-.77c.138-.51.368-1.032.632-1.471.222-.372.504-.745.843-1.039C12.939 2.288 13.414 2 14 2m-2 5c-.708 0-1.405.287-2.033.852a1 1 0 0 1-1.325.013c-.763-.662-1.523-.89-2.184-.774-.775.137-1.527.775-2.029 1.973-.497 1.188-.683 2.8-.376 4.544.308 1.743 1.034 3.195 1.907 4.14.882.955 1.807 1.297 2.582 1.16.29-.05.564-.166.823-.348a1 1 0 0 1 1.11-.025c.484.308.999.465 1.525.465.527 0 1.04-.157 1.525-.465a1 1 0 0 1 1.11.025c.259.182.534.298.823.349.775.137 1.7-.206 2.582-1.16.873-.946 1.6-2.398 1.907-4.141.307-1.744.121-3.357-.376-4.544-.503-1.198-1.254-1.836-2.03-1.973-.66-.117-1.42.112-2.183.774a1 1 0 0 1-1.325-.013C13.405 7.287 12.708 7 12 7m4.8 7.4a1 1 0 0 1-.2 1.4l-.95.712a2.515 2.515 0 0 1-3.286-.234.515.515 0 0 0-.728 0 2.515 2.515 0 0 1-3.287.234L7.4 15.8a1 1 0 1 1 1.2-1.6l.949.712a.515.515 0 0 0 .673-.048 2.515 2.515 0 0 1 3.556 0 .515.515 0 0 0 .673.048l.949-.712a1 1 0 0 1 1.4.2M7.259 9.034l2.732.732a1 1 0 0 1 .241 1.832l-1.732 1a1 1 0 0 1-1.366-.366l-1-1.732a1 1 0 0 1 1.125-1.466m10.534.357a1 1 0 0 1 .073 1.11l-1 1.731a1 1 0 0 1-1.366.366l-1.732-1a1 1 0 0 1 .241-1.832l2.732-.732a1 1 0 0 1 1.052.357"/>
</G>
</Svg>);
};
Icon.displayName = 'PumpkinLanternLine';
/**
* MingCute Icon: Pumpkin Lantern Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const PumpkinLanternLine = memo(Icon);