UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.66 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.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035c-.01-.004-.019-.001-.024.005l-.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-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093c.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.004-.011.017-.43-.003-.012-.01-.01z"/> <Path fill={color} d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2m1.683 13.95a28.45 28.45 0 0 1-3.366 0c.136.786.309 1.494.51 2.098.252.756.53 1.296.79 1.626.088.11.223.326.385.326.145-.013.302-.227.38-.326.26-.33.539-.87.79-1.626a14.35 14.35 0 0 0 .51-2.098Zm5.83-1.195c-.265.114-.544.219-.833.315-.852.284-1.848.512-2.94.67a17.191 17.191 0 0 1-.67 2.94c-.096.29-.201.568-.315.833a8.023 8.023 0 0 0 4.758-4.758m-15.026 0a8.023 8.023 0 0 0 4.758 4.758 10.567 10.567 0 0 1-.315-.833 17.191 17.191 0 0 1-.67-2.94 17.191 17.191 0 0 1-2.94-.67c-.29-.096-.568-.201-.833-.315m5.585-4.683a25.528 25.528 0 0 0 0 3.856c1.282.097 2.574.097 3.856 0a25.537 25.537 0 0 0 0-3.856 25.526 25.526 0 0 0-3.856 0m5.878.245a28.45 28.45 0 0 1 0 3.366 14.438 14.438 0 0 0 2.098-.51c.756-.252 1.296-.53 1.626-.79.11-.087.326-.224.326-.385-.013-.145-.227-.302-.326-.38-.33-.26-.87-.539-1.626-.79a14.438 14.438 0 0 0-2.098-.51Zm-7.9 0c-.786.136-1.493.309-2.098.51-.756.252-1.295.53-1.626.79-.24.19-.312.333-.323.368-.045.15.23.323.323.397.33.26.87.539 1.626.79.605.202 1.312.375 2.098.51a28.415 28.415 0 0 1 0-3.364Zm1.195-5.83a8.024 8.024 0 0 0-4.758 4.758c.265-.114.544-.219.833-.315a17.191 17.191 0 0 1 2.94-.67c.158-1.092.386-2.088.67-2.94.096-.29.201-.568.315-.833m5.51 0c.114.265.219.544.315.833.284.852.512 1.848.67 2.94 1.092.158 2.088.386 2.94.67.29.096.568.201.833.315a8.023 8.023 0 0 0-4.758-4.758M12 4c-.139 0-.312.237-.382.326-.26.33-.539.87-.79 1.626a14.437 14.437 0 0 0-.51 2.098 28.415 28.415 0 0 1 3.364 0 14.437 14.437 0 0 0-.51-2.098c-.251-.756-.53-1.295-.79-1.626C12.312 4.236 12.14 4 12 4" fillRule="nonzero"/> </G> </Svg>); }; Icon.displayName = 'EarthLine'; /** * MingCute Icon: Earth Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const EarthLine = memo(Icon);