UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

17 lines (16 loc) 2.51 kB
import { memo } from 'react'; import Svg, { G, Path } from 'react-native-svg'; const PumpkinLine = /* @__PURE__ */ memo(function PumpkinLine(_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="M14 2a1 1 0 0 1 .039 2l-.043.025-.075.059a2.4 2.4 0 0 0-.439.556 4 4 0 0 0-.286.58c.313.117.607.278.882.473q.207.146.4.32c.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.663s-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.235-.437A3.5 3.5 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.89q.195-.172.4-.32c.369-.26.772-.46 1.206-.577.137-.52.371-1.055.64-1.505a4.4 4.4 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 13s.24 2.594.631 3.593c.397 1.01.923 1.71 1.447 2.082.322.229.633.325.922.325s.6-.096.922-.325c.524-.371 1.05-1.071 1.447-2.082.392-1 .631-2.237.631-3.593s-.24-2.594-.631-3.593c-.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.544s1.034 3.195 1.907 4.14c.827.896 1.691 1.252 2.435 1.18l.19-.027a8 8 0 0 1-.816-1.578C7.278 16.07 7 14.582 7 13s.278-3.07.77-4.323a9 9 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.2 8.2 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>); }); /** * MingCute Icon: Pumpkin Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export { PumpkinLine };