react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 762 B
JavaScript
import * as React from 'react';
export function SvgVine(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M25.645 15.938a7.363 7.363 0 01-1.61.187c-2.777 0-4.914-1.938-4.914-5.309 0-1.652.64-2.511 1.543-2.511.86 0 1.434.77 1.434 2.336 0 .886-.239 1.863-.414 2.441 0 0 .851 1.492 3.191 1.031.496-1.101.77-2.527.77-3.781 0-3.371-1.72-5.332-4.872-5.332-3.238 0-5.132 2.488-5.132 5.773 0 3.25 1.52 6.043 4.027 7.313-1.055 2.11-2.395 3.969-3.793 5.367-2.54-3.07-4.832-7.164-5.773-15.148H6.355c1.73 13.3 6.887 17.539 8.25 18.351.77.461 1.434.442 2.141.043 1.106-.629 4.43-3.953 6.27-7.844.773-.003 1.703-.09 2.629-.3z" })));
}
export default SvgVine;