react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 571 B
JavaScript
import * as React from 'react';
export function SvgErlang(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M2 7v18h4.32C4.26 22.35 3 18.84 3 15c0-3.08 1.15-5.88 3.05-8H2zm14 0c-.35 0-.68.04-1 .13-1.73.44-3 2.01-3 3.87h8c0-2.21-1.79-4-4-4zm9.66 0C27.13 9.27 28 12.03 28 15H12c0 3.51 1 6.56 3 8.03.31.24.64.43 1 .58.6.25 1.27.39 2 .39 2.97 0 5.57-1.82 6.94-4.53l2.02 1.01 1.56.78c-.7 1.4-1.62 2.66-2.73 3.74H30V7h-4.34z" })));
}
export default SvgErlang;