@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.66 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" fillRule="evenodd">
<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 2l-.043.025-.075.059a2.358 2.358 0 0 0-.439.556 4.048 4.048 0 0 0-.286.58c.313.117.607.278.882.473.138.098.272.204.4.32.998-.723 2.176-1.11 3.411-.891 1.673.294 2.865 1.59 3.527 3.17.666 1.59.864 3.6.5 5.663-.364 2.064-1.237 3.884-2.407 5.15-1.162 1.258-2.726 2.068-4.398 1.773a3.985 3.985 0 0 1-1.235-.437A3.513 3.513 0 0 1 12 21c-.688 0-1.32-.21-1.876-.559-.38.21-.793.36-1.235.437-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.235-.218 2.413.168 3.41.89.13-.115.263-.221.4-.32.369-.26.772-.46 1.206-.577.137-.52.371-1.055.64-1.505a4.35 4.35 0 0 1 .844-1.038C12.939 2.288 13.414 2 14 2m-2 5c-.285 0-.599.097-.922.325-.524.371-1.05 1.071-1.447 2.082C9.24 10.407 9 11.644 9 13c0 1.356.24 2.594.631 3.593.397 1.01.923 1.71 1.447 2.082.322.229.633.325.922.325.289 0 .6-.096.922-.325.524-.371 1.05-1.071 1.447-2.082.392-1 .631-2.237.631-3.593 0-1.356-.24-2.594-.631-3.593-.397-1.01-.923-1.711-1.447-2.082C12.6 7.096 12.285 7 12 7m-5.542.091c-.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.827.896 1.691 1.252 2.435 1.18l.19-.027a8.162 8.162 0 0 1-.816-1.578C7.278 16.07 7 14.582 7 13c0-1.582.278-3.07.77-4.323a8.62 8.62 0 0 1 .515-1.091c-.64-.445-1.27-.593-1.827-.495m9.256.495c.195.343.367.71.517 1.09C16.722 9.93 17 11.419 17 13c0 1.582-.278 3.07-.77 4.323a8.165 8.165 0 0 1-.816 1.578l.044.008c.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-.556-.098-1.187.05-1.827.495"/>
</G>
</Svg>);
};
Icon.displayName = 'PumpkinLine';
/**
* MingCute Icon: Pumpkin Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const PumpkinLine = memo(Icon);