react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 407 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgVuejsLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M3.316 3L12 18l8.684-15H23L12 22 1 3h2.316zm4.342 0L12 10.5 16.342 3h2.316L12 14.5 5.342 3h2.316z" />
</Svg>
);
}
export default SvgVuejsLine;