web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
9 lines (7 loc) • 556 B
JavaScript
import * as React from "react";
function SvgComponent(props) {
return <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="1em" height="1em" {...props}><g fill="#474747" stroke="#474747"><path d="M6 6L4 8 2 6" fill="none" strokeWidth={2} strokeLinecap="round" /><path d="M6 14h4c1.108 0 2-.892 2-2V4c0-1.108-.892-2-2-2H6c-1.108 0-2 .892-2 2v4" fill="none" strokeWidth={2} /><path d="M7 6V5H6v1zM2 6V5H1v1z" style={{
marker: "none"
}} color="#000" overflow="visible" stroke="none" /></g></svg>;
}
export default SvgComponent;