@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 1.73 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="M8.52 13.846c-1.04 0-1.888-.945-1.888-2.101s.827-2.102 1.889-2.102c1.05 0 1.91.945 1.889 2.102 0 1.156-.839 2.1-1.89 2.1m6.974 0c-1.04 0-1.89-.945-1.89-2.101s.829-2.102 1.89-2.102c1.05 0 1.91.945 1.89 2.102 0 1.156-.829 2.1-1.89 2.1m-5.369-9.523-.308-.563-.634.106a16.4 16.4 0 0 0-4.158 1.28l-.228.105-.142.21c-2.613 3.853-3.33 7.648-2.975 11.375l.039.407.33.24a16.9 16.9 0 0 0 5.078 2.543l.79.242L9.03 17.55c1.91.472 4.03.472 5.939 0l1.107 2.717.79-.242a16.8 16.8 0 0 0 5.08-2.545l.327-.238.04-.402c.436-4.32-.697-8.083-2.958-11.384l-.142-.208-.228-.104a16.6 16.6 0 0 0-4.154-1.28l-.618-.103-.314.542c-.088.15-.177.32-.263.493a16 16 0 0 0-3.263 0c-.085-.17-.17-.333-.248-.474M6.715 16.61c.197.114.405.226.61.328l-.449 1.096a15 15 0 0 1-3.428-1.778c-.225-3.138.413-6.305 2.564-9.57a14.6 14.6 0 0 1 2.824-.913c.06.125.116.248.162.356l.273.643.692-.101a14.1 14.1 0 0 1 4.09 0l.69.1.272-.642c.047-.112.102-.234.16-.356.977.21 1.923.52 2.828.915 1.875 2.82 2.821 5.966 2.546 9.567a15 15 0 0 1-3.43 1.779l-.445-1.095c.206-.102.414-.214.613-.329.49-.282 1.017-.634 1.353-.97l-1.28-1.28c-.163.164-.523.42-.977.682-.444.256-.885.463-1.167.556-2.003.663-4.428.663-6.432 0-.281-.093-.722-.3-1.166-.556-.454-.261-.814-.518-.978-.682l-1.28 1.28c.337.336.864.688 1.354.97"/>
</Svg>);
});
Icon.displayName = 'DiscordLine';
/**
* Remix Icon: Discord Line
* @see {@link https://remixicon.com/icon/discord-line Remix Icon Docs}
*/
export const DiscordLine = Icon;