react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 448 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgTwitterXLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...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>
);
export default SvgTwitterXLine;