@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 991 B
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="M2.148 11.81q7.87-3.429 10.497-4.522c4.999-2.079 6.037-2.44 6.714-2.452.15-.003.482.034.698.21.182.147.232.347.256.487s.054.459.03.708c-.27 2.847-1.443 9.754-2.04 12.942-.252 1.348-.748 1.8-1.23 1.845-1.045.096-1.838-.69-2.85-1.354-1.585-1.039-2.48-1.686-4.018-2.699-1.777-1.171-.625-1.815.388-2.867.265-.275 4.87-4.464 4.96-4.844.01-.048.021-.225-.084-.318-.105-.094-.26-.062-.373-.036q-.239.054-7.592 5.018-1.079.74-1.952.721c-.643-.014-1.88-.363-2.798-.662-1.128-.367-2.024-.56-1.946-1.183q.061-.486 1.34-.994"/>
</Svg>);
});
Icon.displayName = 'Telegram2Fill';
/**
* Remix Icon: Telegram 2 Fill
* @see {@link https://remixicon.com/icon/telegram-2-fill Remix Icon Docs}
*/
export const Telegram2Fill = Icon;