@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.47 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.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 20c-1.68 0-3.301-.12-4.532-.493-.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.025a9.535 9.535 0 0 1-.138.008c.122-.345.19-.72.19-1.122 0-.305-.038-.602-.107-.888.386-.03.703-.08.939-.151.104-.032.01-.13-.1-.215l-.107-.078-.076-.051a2.698 2.698 0 0 0-.995-.418c-.38-.76-.964-1.418-1.586-1.943A4.78 4.78 0 0 1 19 13M5 13c.357 0 .703.04 1.032.113-.622.525-1.206 1.183-1.586 1.943-.388.079-.731.234-.995.418l-.128.088c-.127.092-.276.22-.155.256.236.071.553.122.94.151-.07.286-.108.583-.108.888 0 .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.756 4.756 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 = memo(Icon);