UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.41 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="M13.649 2.135a10 10 0 0 0-3.298 0c-.336.456-.664 1.045-.963 1.764-.282.676-.53 1.446-.736 2.291A29 29 0 0 1 12 6c1.155 0 2.278.066 3.348.19a15.6 15.6 0 0 0-.735-2.29c-.3-.72-.628-1.31-.964-1.765m2.093 6.123A27 27 0 0 0 12 8c-1.318 0-2.576.092-3.742.258A27 27 0 0 0 8 12c0 1.318.092 2.576.258 3.742C9.424 15.908 10.682 16 12 16s2.576-.091 3.742-.258C15.908 14.576 16 13.318 16 12s-.091-2.576-.258-3.742m2.068 7.09c.124-1.07.19-2.193.19-3.348a29 29 0 0 0-.19-3.348 15.6 15.6 0 0 1 2.29.736c.72.3 1.31.627 1.765.963a10 10 0 0 1 0 3.298c-.455.336-1.045.664-1.764.964-.676.281-1.446.53-2.291.735m-2.462 2.462A29 29 0 0 1 12 18a29 29 0 0 1-3.348-.19c.206.845.454 1.615.736 2.29.3.72.627 1.31.963 1.765a10 10 0 0 0 3.298 0c.336-.455.664-1.045.964-1.764.281-.676.53-1.446.735-2.291m1.066 3.166.045-.106c.415-.996.758-2.143 1.014-3.397a19 19 0 0 0 3.016-.862l.487-.197a10.04 10.04 0 0 1-4.562 4.562m-8.828 0-.045-.106c-.415-.996-.758-2.143-1.014-3.397a19 19 0 0 1-3.016-.862l-.487-.197a10.04 10.04 0 0 0 4.562 4.562M6.19 15.348A29 29 0 0 1 6 12c0-1.155.066-2.278.19-3.348-.845.206-1.615.454-2.29.736-.72.3-1.31.627-1.765.963a10 10 0 0 0 0 3.298c.456.336 1.045.664 1.764.964.676.281 1.446.53 2.291.735m.337-8.82A19 19 0 0 1 7.39 3.51l.197-.487a10.04 10.04 0 0 0-4.562 4.562l.106-.045c.996-.415 2.143-.758 3.397-1.014m10.946 0a19 19 0 0 0-.862-3.017l-.197-.487a10.04 10.04 0 0 1 4.562 4.562l-.106-.045c-.996-.415-2.143-.758-3.397-1.014"/> </G> </Svg>); }); Icon.displayName = 'Earth3Fill'; /** * MingCute Icon: Earth 3 Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const Earth3Fill = Icon;