UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.38 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.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="M12 12c1.873 0 3.57.62 4.815 1.487 1.183.825 2.185 2.051 2.185 3.37 0 .724-.309 1.324-.796 1.77-.458.421-1.056.694-1.672.88C15.301 19.88 13.68 20 12 20s-3.301-.12-4.532-.493c-.616-.186-1.214-.459-1.673-.88C5.31 18.182 5 17.582 5 16.858c0-1.319 1.002-2.545 2.185-3.37C8.43 12.62 10.127 12 12 12m0 2c-1.44 0-2.743.48-3.67 1.127-.989.69-1.33 1.392-1.33 1.73 0 .304.352.494.672.614l.205.07.17.052c.94.284 2.32.407 3.953.407 1.508 0 2.799-.105 3.728-.344l.304-.087.19-.06c.343-.117.778-.314.778-.652s-.341-1.04-1.33-1.73C14.744 14.481 13.44 14 12 14m7-1c1.044 0 1.992.345 2.693.833.64.447 1.307 1.19 1.307 2.096 0 1.335-1.297 1.813-2.463 1.98l-.3.037-.289.025-.138.008c.122-.345.19-.72.19-1.122a3.8 3.8 0 0 0-.107-.888c.386-.03.703-.08.939-.151.104-.032.01-.13-.1-.215l-.107-.078-.076-.051a2.7 2.7 0 0 0-.995-.418c-.38-.76-.964-1.418-1.586-1.943A4.8 4.8 0 0 1 19 13M5 13q.537.002 1.032.113c-.622.525-1.206 1.183-1.586 1.943a2.7 2.7 0 0 0-.995.418l-.128.088c-.127.092-.276.22-.155.256.236.071.553.122.94.151a3.7 3.7 0 0 0-.108.888c0 .402.068.777.19 1.122l-.28-.02-.296-.03c-1.202-.147-2.614-.607-2.614-2 0-.905.666-1.649 1.307-2.096A4.76 4.76 0 0 1 5 13m13.5-6a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5m-13 0a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5M12 3a4 4 0 1 1 0 8 4 4 0 0 1 0-8m6.5 6a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1m-13 0a.5.5 0 1 0 0 1 .5.5 0 0 0 0-1M12 5a2 2 0 1 0 0 4 2 2 0 0 0 0-4"/> </G> </Svg>); }); Icon.displayName = 'Group3Line'; /** * MingCute Icon: Group 3 Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const Group3Line = Icon;