UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.05 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.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="m19.705 15.854-.56 3.362c-.137.82-.61 1.792-1.688 2.15l-.284.089-.155.043-.342.085q-.361.083-.809.156l-.472.07c-.662.086-1.452.15-2.395.177V20a1 1 0 1 0-2 0v1.986a24 24 0 0 1-2.395-.178l-.472-.069q-.448-.072-.81-.156l-.34-.085-.303-.087-.137-.044c-1.078-.359-1.55-1.332-1.687-2.15l-.56-3.363c.372.146.741.261 1.065.354C7.102 16.706 9.45 17 12 17s4.898-.294 6.639-.792a12 12 0 0 0 1.066-.354M12 2a1 1 0 0 1 1 1c0 1.39 1.01 2.137 1.947 2.606.298.149.615.279.938.405l.65.251c.649.256 1.287.536 1.81.965.302.246.655.663.655 1.273 0 .494-.198.88-.47 1.18l.45.128.32.1.33.114c1.16.422 2.37 1.122 2.37 2.405 0 1.189-1.048 1.907-2.123 2.357l-.323.127q-.08.03-.16.058l-.313.105-.3.092-.142.042C16.898 15.706 14.55 16 12 16c-2.381 0-4.584-.257-6.283-.695l-.499-.139-.3-.092-.313-.105-.16-.058-.322-.127C3.048 14.334 2 13.616 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-.61.353-1.027.654-1.273.522-.427 1.16-.708 1.809-.963l.65-.252c.323-.126.64-.257.94-.406.89-.445 1.846-1.143 1.94-2.402L11 3a1 1 0 0 1 1-1"/> </G> </Svg>); }); Icon.displayName = 'TempleOfHeavenFill'; /** * MingCute Icon: Temple Of Heaven Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const TempleOfHeavenFill = Icon;