react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 320 B
JavaScript
import * as React from 'react';
export function SvgGitter(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M6 2v17h2V2H6zm6 4v24h2V6h-2zm6 0v24h2V6h-2zm6 0v13h2V6h-2z" })));
}
export default SvgGitter;