UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.55 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.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036q-.016-.004-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092q.019.005.029-.008l.004-.014-.034-.614q-.005-.019-.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.003-.011.018-.43-.003-.012-.01-.01z"/> <Path fill={color} d="M21.815 13.925a10.01 10.01 0 0 1-7.46 7.796c.51-.602.952-1.382 1.319-2.267.365-.88.67-1.901.896-3.02 1.677-.432 3.196-1.096 4.47-1.945q.402-.269.775-.564m-19.63 0q.373.295.775.564c1.273.849 2.792 1.513 4.47 1.945.225 1.119.53 2.14.896 3.02.366.884.808 1.665 1.318 2.267a10.01 10.01 0 0 1-7.459-7.796m12.242 2.92a13.5 13.5 0 0 1-.601 1.844c-.347.838-.729 1.455-1.091 1.846-.37.4-.624.465-.735.465s-.364-.065-.735-.465c-.362-.39-.744-1.008-1.091-1.846a13.5 13.5 0 0 1-.601-1.844c.788.102 1.6.155 2.427.155a19 19 0 0 0 2.427-.155m.536-6.116a21.7 21.7 0 0 1-.142 4.035c-.897.154-1.843.236-2.821.236a17 17 0 0 1-2.822-.236 21 21 0 0 1-.141-4.035c.946.177 1.94.271 2.963.271a16 16 0 0 0 2.963-.271m6.103-2.954c.46.986.765 2.06.88 3.189-.501.673-1.177 1.302-2.016 1.86-.87.58-1.896 1.07-3.039 1.437a23.5 23.5 0 0 0 .042-4.045 12 12 0 0 0 2.683-1.281 9 9 0 0 0 1.45-1.16m-18.132 0c.43.427.92.815 1.45 1.16a12 12 0 0 0 2.683 1.281 23.6 23.6 0 0 0 .041 4.045c-1.143-.367-2.169-.856-3.039-1.436-.838-.559-1.514-1.188-2.016-1.861.116-1.13.42-2.203.88-3.19ZM12 3c.11 0 .364.066.735.466.362.39.744 1.008 1.091 1.846.39.943.714 2.108.922 3.421C13.886 8.906 12.963 9 12 9a14 14 0 0 1-2.749-.267c.208-1.313.532-2.478.923-3.42.347-.839.729-1.456 1.09-1.847.372-.4.625-.466.736-.466m2.355-.721a10 10 0 0 1 5.64 3.715 6.7 6.7 0 0 1-1.469 1.264 9.7 9.7 0 0 1-1.842.923c-.231-1.361-.58-2.595-1.01-3.634-.367-.885-.809-1.666-1.32-2.268Zm-4.71 0c-.51.602-.952 1.383-1.319 2.268-.43 1.04-.78 2.273-1.01 3.634a9.7 9.7 0 0 1-1.842-.923 6.7 6.7 0 0 1-1.47-1.264 10 10 0 0 1 5.641-3.715"/> </G> </Svg>); }); Icon.displayName = 'Earth2Fill'; /** * MingCute Icon: Earth 2 Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const Earth2Fill = Icon;