UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.63 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" fillRule="evenodd"> <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 3c.11 0 .364.065.735.466.362.39.744 1.008 1.091 1.846.223.537.423 1.145.593 1.812a23.4 23.4 0 0 0-4.838 0c.17-.667.37-1.275.593-1.812.347-.838.729-1.456 1.09-1.847.372-.4.625-.465.736-.465M9.185 9.185A21 21 0 0 1 12 9c.985 0 1.93.066 2.815.185.119.885.185 1.83.185 2.815s-.066 1.93-.185 2.815A21 21 0 0 1 12 15c-.985 0-1.93-.066-2.815-.185A21 21 0 0 1 9 12c0-.985.066-1.93.185-2.815m-2.06 5.234a23.4 23.4 0 0 1 0-4.838c-.668.17-1.277.37-1.813.593-.838.347-1.456.729-1.847 1.09-.4.372-.465.625-.465.736s.065.364.465.735c.391.362 1.009.744 1.847 1.091a13.4 13.4 0 0 0 1.812.593Zm2.456 2.457a23.4 23.4 0 0 0 4.838 0c-.17.667-.37 1.276-.593 1.812-.347.838-.729 1.456-1.09 1.847-.372.4-.625.465-.736.465s-.364-.065-.735-.465c-.362-.391-.744-1.009-1.091-1.847a13.4 13.4 0 0 1-.593-1.812m7.294-2.457a23.4 23.4 0 0 0 0-4.838 13.4 13.4 0 0 1 1.813.593c.838.347 1.456.729 1.847 1.09.4.372.465.625.465.736s-.065.364-.465.735c-.391.362-1.009.744-1.847 1.091-.537.223-1.145.423-1.812.593Zm-.328-6.966a16.3 16.3 0 0 0-.873-2.907c-.367-.884-.808-1.665-1.319-2.267a10.02 10.02 0 0 1 7.366 7.366c-.602-.51-1.383-.952-2.267-1.319a16.3 16.3 0 0 0-2.907-.873m0 9.094a16.3 16.3 0 0 1-.873 2.907c-.367.884-.808 1.665-1.319 2.267a10.02 10.02 0 0 0 7.366-7.366c-.602.51-1.383.952-2.267 1.319-.851.353-1.832.65-2.907.873m-6.902 5.174c-.51-.602-.952-1.383-1.319-2.267a16.3 16.3 0 0 1-.873-2.907 16.3 16.3 0 0 1-2.907-.873c-.884-.367-1.666-.808-2.267-1.319a10.02 10.02 0 0 0 7.366 7.366M7.453 7.453c.223-1.075.52-2.056.873-2.907.367-.884.808-1.665 1.319-2.267a10.02 10.02 0 0 0-7.366 7.366c.601-.51 1.383-.952 2.267-1.319a16.3 16.3 0 0 1 2.907-.873"/> </G> </Svg>); }); Icon.displayName = 'EarthFill'; /** * MingCute Icon: Earth Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const EarthFill = Icon;