UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.63 kB
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"> <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 2c-.163.08-.297.239-.407.401l-.15.239a4 4 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.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.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.544s1.034 3.195 1.907 4.14c.882.955 1.807 1.297 2.582 1.16q.435-.075.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.025q.389.273.823.349c.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 = Icon;