react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 339 B
JavaScript
import * as React from 'react';
export function SvgVuejs(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M3 6l13 22L29 6H19l-3 5.3L13 6H3zm3.5 2h3.771L16 18l5.729-10H25.5L16 24.1 6.5 8z" })));
}
export default SvgVuejs;