@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 604 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="M10.488 14.651 15.25 21h7l-7.858-10.478L20.93 3h-2.65l-5.117 5.886L8.75 3h-7l7.51 10.015L2.32 21h2.65zM16.25 19 5.75 5h2l10.5 14z"/>
</Svg>);
});
Icon.displayName = 'TwitterXLine';
/**
* Remix Icon: Twitter X Line
* @see {@link https://remixicon.com/icon/twitter-x-line Remix Icon Docs}
*/
export const TwitterXLine = Icon;