@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 2.1 kB
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M6.66 18.964a2 2 0 0 1-.155-.21c-.238-.353-.515-.905-.805-1.627-.575-1.432-1.138-3.372-1.536-5.326-.4-1.965-.616-3.869-.537-5.244.04-.7.153-1.161.283-1.416A.7.7 0 0 1 4.002 5c.292 0 .74.162 1.356.651.6.476 1.25 1.174 1.927 2.032 1.236 1.565 2.464 3.532 3.552 5.326-.18.315-.37.66-.565 1.014l-.278.502c-.419.755-.864 1.537-1.324 2.245-.465.715-.918 1.312-1.344 1.72-.3.289-.52.42-.665.474M12 11.076c-.962-1.562-2.042-3.236-3.145-4.632-.721-.914-1.481-1.747-2.254-2.36C5.846 3.486 4.959 3 4.001 3c-.923 0-1.537.57-1.874 1.234-.315.62-.45 1.408-.496 2.209-.094 1.625.16 3.721.573 5.756.416 2.046 1.01 4.106 1.64 5.674.313.778.65 1.476 1 1.997.175.26.378.514.614.713.225.192.582.417 1.042.417.895 0 1.648-.526 2.211-1.067.589-.565 1.14-1.31 1.636-2.073.5-.77.973-1.603 1.396-2.364l.249-.45.024.045.21.393c.41.76.867 1.595 1.358 2.367.486.766 1.035 1.518 1.639 2.088C15.812 20.495 16.58 21 17.5 21c.46 0 .817-.226 1.043-.417.235-.2.439-.453.613-.712.35-.522.688-1.22 1-1.998.63-1.568 1.224-3.628 1.64-5.674.414-2.034.668-4.131.574-5.756-.046-.8-.18-1.589-.496-2.209C21.536 3.57 20.924 3 20 3c-.958 0-1.846.485-2.6 1.084-.773.613-1.533 1.446-2.255 2.36-1.102 1.396-2.183 3.07-3.145 4.632m1.162 1.935c1.089-1.795 2.317-3.763 3.553-5.328.677-.857 1.327-1.556 1.927-2.032.617-.49 1.064-.65 1.356-.651l.02.022a.7.7 0 0 1 .073.119c.13.255.242.717.282 1.416.08 1.375-.137 3.279-.537 5.244-.397 1.954-.96 3.894-1.536 5.326-.29.722-.566 1.274-.804 1.628q-.099.144-.164.218c-.173-.052-.417-.186-.736-.488-.426-.403-.871-.994-1.324-1.706a36 36 0 0 1-1.283-2.242q-.102-.188-.2-.374c-.216-.401-.426-.795-.627-1.152"/>
</Svg>);
});
Icon.displayName = 'WechatChannelsLine';
/**
* Remix Icon: Wechat Channels Line
* @see {@link https://remixicon.com/icon/wechat-channels-line Remix Icon Docs}
*/
export const WechatChannelsLine = Icon;