UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.51 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.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.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-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.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.003-.011.018-.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.482 14.94a18.214 18.214 0 0 1-2.964 0c.093.397.197.765.31 1.102.251.755.53 1.293.79 1.622.127.162.23.248.3.29l.051.028.03.008.032-.008.051-.027a1.21 1.21 0 0 0 .3-.29c.26-.33.539-.868.79-1.623.113-.337.217-.705.31-1.102m-8.675-1.435a8.026 8.026 0 0 0 4.441 4.01 10.52 10.52 0 0 1-.318-.84 15.818 15.818 0 0 1-.52-2.033 17.87 17.87 0 0 1-3.603-1.137m14.387 0c-1.145.5-2.351.883-3.605 1.137a15.63 15.63 0 0 1-.52 2.034c-.096.29-.202.572-.318.838a8.027 8.027 0 0 0 4.443-4.01Zm-5.218-4.634a15.119 15.119 0 0 1-3.952 0 26.02 26.02 0 0 0 .141 4.025 16.195 16.195 0 0 0 3.67 0A25.04 25.04 0 0 0 14 12c0-.384-.008-.76-.024-1.13ZM4.568 9.032a7.978 7.978 0 0 0-.52 3.856 15.893 15.893 0 0 0 4.067 1.637 27.889 27.889 0 0 1-.074-4.053 14.915 14.915 0 0 1-3.473-1.44m14.864 0a14.916 14.916 0 0 1-3.473 1.44 27.879 27.879 0 0 1-.074 4.053 15.892 15.892 0 0 0 4.066-1.637 7.978 7.978 0 0 0-.52-3.855Zm-7.416-5.02-.011-.002-.02.003-.038.015a1.233 1.233 0 0 0-.33.307c-.26.33-.538.868-.79 1.622-.27.808-.488 1.8-.633 2.919a13.123 13.123 0 0 0 3.612 0c-.145-1.12-.364-2.111-.633-2.919-.252-.754-.53-1.293-.79-1.622a1.233 1.233 0 0 0-.3-.29l-.067-.032Zm-2.768.474a8.022 8.022 0 0 0-3.71 2.797c.843.484 1.746.876 2.695 1.163.16-1.164.397-2.223.697-3.122.097-.291.203-.572.318-.838m5.504 0c.115.266.22.547.318.838.3.9.537 1.958.697 3.122a12.927 12.927 0 0 0 2.695-1.163 8.021 8.021 0 0 0-3.71-2.797"/> </G> </Svg>); }; Icon.displayName = 'Earth2Line'; /** * MingCute Icon: Earth 2 Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const Earth2Line = memo(Icon);