UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.72 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" fillRule="evenodd"> <Path d="M24 0v24H0V0zM12.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.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.004-.011.017-.43-.003-.012-.01-.01z"/> <Path fill={color} d="M12 2a1 1 0 0 1 1 1c0 1.372 1.009 2.146 2.13 2.7l.34.16.34.148 1.22.497.295.125.295.138C18.349 7.13 19 7.64 19 8.5c0 .494-.198.88-.47 1.18l.45.128.32.1.33.114c1.16.422 2.37 1.122 2.37 2.405 0 1.198-1.134 1.925-2.115 2.346l-.74 4.443c-.137.82-.61 1.792-1.688 2.15l-.13.042-.282.083-.154.04-.336.079-.181.038-.393.073-.432.066q-.34.048-.729.087l-.542.047-.288.02-.613.032-.663.02a36 36 0 0 1-1.428 0l-.663-.02-.613-.032-.288-.02-.542-.047a18 18 0 0 1-.729-.087l-.432-.066-.393-.073-.354-.077-.163-.04-.3-.081a7 7 0 0 1-.266-.083c-1.078-.359-1.55-1.332-1.687-2.15l-.741-4.444C3.133 14.353 2 13.625 2 12.427c0-1.283 1.21-1.983 2.37-2.405l.33-.114.32-.1.45-.128A1.7 1.7 0 0 1 5 8.5c0-.86.651-1.37 1.38-1.732l.295-.138.294-.125 1.052-.426.339-.144.17-.076.34-.16c1.065-.525 2.029-1.25 2.123-2.498L11 3a1 1 0 0 1 1-1m5.747 13.433c-1.614.36-3.609.567-5.747.567-1.96 0-3.8-.174-5.336-.48l-.411-.087.575 3.454c.035.21.118.506.347.582l.208.065.247.066.14.033.311.066q.083.017.173.032l.381.062.431.057q.569.069 1.31.11l.624.025V18a1 1 0 0 1 1.993-.117L13 18v1.985l.624-.026q.741-.04 1.31-.109l.43-.057.382-.062q.09-.015.173-.032l.311-.066.269-.066.227-.066.1-.032c.2-.066.288-.302.33-.5zM12 5.828c-.652.793-1.485 1.282-2.053 1.566-.862.431-1.776.74-2.642 1.159.396.177 1.014.338 1.838.457a1 1 0 0 1-.002 1.98c-1.724.246-3.138.56-4.098.925-.484.185-.79.359-.957.498-.033.027.07.098.243.188l.235.117.274.125.431.186.474.193.168.063C7.427 13.718 9.58 14 12 14c2.268 0 4.302-.248 5.797-.636l.292-.08c.617-.175 1.376-.384 1.852-.848-.276-.244-.645-.392-.984-.52-.96-.366-2.374-.68-4.098-.926a1 1 0 0 1-.002-1.98c.824-.119 1.442-.28 1.838-.457-.866-.419-1.78-.728-2.642-1.159-.568-.284-1.4-.773-2.053-1.566"/> </G> </Svg>); }); Icon.displayName = 'TempleOfHeavenLine'; /** * MingCute Icon: Temple Of Heaven Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const TempleOfHeavenLine = Icon;