@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.59 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">
<Path d="M24 0v24H0V0zM12.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035c-.01-.004-.019-.001-.024.005l-.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-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093c.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.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M15.003 4c.259 0 .584.068.845.132.91.22 1.989.493 2.755 1.068.713.535 1.267 1.468 1.695 2.416.89 1.975 1.509 4.608 1.723 6.61.102.95.127 1.906-.056 2.549-.09.316-.285.554-.422.7-.418.443-.956.774-1.488 1.075l-.264.149a25.21 25.21 0 0 1-.525.284l-.522.27-.717.357-.577.284a1 1 0 0 1-1.166-1.59l-.434-.868A13.057 13.057 0 0 1 12 18c-1.37 0-2.677-.2-3.85-.564l-.433.866a1 1 0 0 1-1.164 1.592l-.544-.27c-.604-.298-1.208-.596-1.796-.925-.614-.343-1.265-.708-1.752-1.225a1.737 1.737 0 0 1-.422-.7c-.184-.642-.158-1.597-.057-2.548.214-2.002.833-4.635 1.724-6.61.427-.948.981-1.881 1.694-2.416.766-.575 1.845-.848 2.755-1.068C8.416 4.068 8.74 4 9 4a1 1 0 0 1 .99 1.147A13.65 13.65 0 0 1 12 5c.691 0 1.366.05 2.014.148A1 1 0 0 1 15.004 4Zm1.354 2.363c-.15-.048-.186-.027-.24.063l-.062.112a1.515 1.515 0 0 1-1.635.716A11.405 11.405 0 0 0 12 7c-.852 0-1.667.09-2.42.254a1.515 1.515 0 0 1-1.635-.716l-.062-.111c-.053-.09-.089-.111-.238-.064-.356.113-.738.234-1.045.437-.287.215-.67.75-1.071 1.639-.766 1.697-1.366 4.204-1.558 6-.04.379-.061.704-.066.972v.294c.004.178.017.319.035.422.254.248.568.443.883.622l.682.377.446.235.364-.728a1 1 0 0 1 1.133-1.624C8.664 15.62 10.246 16 12 16c1.753 0 3.336-.382 4.552-.99a1 1 0 0 1 1.213 1.538l-.08.085.364.73c.298-.154.597-.317.897-.483.39-.216.8-.443 1.117-.753.018-.103.03-.244.035-.422v-.294a11.403 11.403 0 0 0-.066-.973c-.192-1.795-.792-4.302-1.558-6-.4-.888-.784-1.423-1.07-1.638-.308-.203-.69-.324-1.047-.437M8.75 10.5a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5m6.5 0a1.75 1.75 0 1 1 0 3.5 1.75 1.75 0 0 1 0-3.5"/>
</G>
</Svg>);
};
Icon.displayName = 'DiscordLine';
/**
* MingCute Icon: Discord Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const DiscordLine = memo(Icon);