UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.1 kB
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="M13.196 5.22c.074-.187.17-.386.287-.58.152-.254.307-.443.438-.556a.596.596 0 0 1 .118-.085A1 1 0 0 0 14 2c-.586 0-1.061.288-1.39.572-.337.294-.62.667-.842 1.039-.27.449-.504.984-.64 1.504-.599.16-1.137.48-1.606.898-.998-.723-2.176-1.11-3.411-.891-1.673.294-2.865 1.59-3.526 3.17-.667 1.59-.865 3.6-.501 5.663.363 2.064 1.237 3.884 2.407 5.15 1.162 1.258 2.726 2.068 4.398 1.773a3.982 3.982 0 0 0 1.235-.437A3.513 3.513 0 0 0 12 21c.688 0 1.32-.21 1.877-.559.379.21.792.36 1.234.437 1.672.295 3.236-.515 4.398-1.772 1.17-1.267 2.043-3.087 2.407-5.151.364-2.064.166-4.073-.5-5.664-.662-1.579-1.854-2.875-3.527-3.17-1.235-.217-2.413.169-3.411.892a4.118 4.118 0 0 0-1.282-.794ZM9.704 7.135a1 1 0 0 1 .36 1.368C9.428 9.594 9 11.184 9 13c0 2.056.548 3.81 1.314 4.884a1 1 0 1 1-1.628 1.161C7.623 17.554 7 15.365 7 13c0-2.102.491-4.054 1.337-5.504a1 1 0 0 1 1.367-.36Zm4.592 0a1 1 0 0 1 1.367.36C16.51 8.946 17 10.898 17 13c0 2.365-.623 4.554-1.686 6.045a1 1 0 1 1-1.628-1.16C14.452 16.81 15 15.055 15 13c0-1.816-.428-3.405-1.064-4.496a1 1 0 0 1 .36-1.368Z"/> </G> </Svg>); }; Icon.displayName = 'PumpkinFill'; /** * MingCute Icon: Pumpkin Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const PumpkinFill = memo(Icon);