UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.49 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.951 12.997c-.5 5.055-4.764 9.003-9.95 9.003-5.16 0-9.406-3.906-9.943-8.922.501.4 1.076.766 1.704 1.091C5.912 15.283 8.822 16 12 16c3.188 0 6.1-.764 8.246-1.898.63-.332 1.205-.703 1.705-1.105M12.001 8c2.574 0 4.938.387 6.69.992.908.314 2.131.828 2.807 1.66a4 4 0 0 1-.115.139c-.455.52-1.153 1.057-2.072 1.543-1.836.97-4.424 1.666-7.31 1.666-2.898 0-5.487-.658-7.319-1.607-.916-.475-1.609-1.004-2.06-1.527a4 4 0 0 1-.146-.18c.67-.852 1.913-1.376 2.834-1.694C7.062 8.387 9.425 8 12 8"/> </G> </Svg>); }); Icon.displayName = 'HemisphereFill'; /** * MingCute Icon: Hemisphere Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const HemisphereFill = Icon;