UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.44 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="M12.5 3c.031 0 .081.087.138.22l.089.228.045.13.086.275.038.135.063.25c.026.114.041.207.041.262l-.003.052c.277.059.53.166.757.31a.5.5 0 0 1 .063-.183 2 2 0 0 1 .251-.296l.196-.193.211-.195.204-.172c.16-.13.287-.213.321-.193.04.023.02.238-.028.502l-.056.275-.067.277-.07.248a1.4 1.4 0 0 1-.096.247.5.5 0 0 1-.319.237 2.97 2.97 0 0 1 .418 2.961 1 1 0 0 1-.305.407l-.103.071.018.004a2 2 0 0 1 1.602 1.803l.006.158v1.766l.293-.293a1 1 0 0 1 1.497 1.32l-.083.094L16 15.414V18a1 1 0 0 1 .993.883L17 19v2a1 1 0 0 1 .117 1.993L17 23H8a1 1 0 0 1-.117-1.993L8 21v-2a1 1 0 0 1 .883-.993L9 18v-3.586l-1.707-1.707a1 1 0 0 1-.284-.576L7 12V5.866a1 1 0 0 1 .383-1.86L7.5 4h1a1 1 0 0 1 .924 1.384l-.057.114.664 1.328a2.96 2.96 0 0 1 .605-1.41.5.5 0 0 1-.319-.237 1.4 1.4 0 0 1-.096-.247l-.07-.248-.067-.277-.056-.275c-.048-.264-.069-.479-.028-.502.034-.02.161.064.321.193l.204.172.211.195.196.193c.12.124.214.232.251.296a.5.5 0 0 1 .063.184c.226-.145.48-.252.757-.311L12 4.5c0-.055.015-.148.04-.262l.064-.25.08-.273a8 8 0 0 1 .09-.267l.088-.228c.057-.133.107-.22.138-.22M15 20h-5v1h5zm-1-8.086-3 3V18h3zM9 9.236v2.35l1.25 1.25 2.305-2.305-2.751-.55c-.418-.084-.628-.393-.804-.745M12.5 6.5c-.083 0-.193.037-.301.163A.9.9 0 0 0 12 7.25q0 .14.033.26l.037.113a1 1 0 0 1-.006.77l.984.197a1 1 0 0 1-.16-.841l.042-.126A1 1 0 0 0 13 7.25a.9.9 0 0 0-.199-.587c-.108-.126-.218-.163-.301-.163M8 .5c.156 0 1 1.448 1 2a1 1 0 0 1-2 0c0-.552.844-2 1-2"/> </G> </Svg>); }); Icon.displayName = 'StatueOfLibertyLine'; /** * MingCute Icon: Statue Of Liberty Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const StatueOfLibertyLine = Icon;