web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
21 lines (19 loc) • 867 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="#2e3436"><path d="M2.994 1.008C1.994 1.008.988 2 .988 3v12.02h7.006v-2H2.988V5H13v3h2V3c0-1-1.006-1.992-2.006-1.992z" style={{
lineHeight: "normal",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textDecorationStyle: "solid",
textDecorationColor: "#000",
textTransform: "none",
whiteSpace: "normal",
isolation: "auto",
mixBlendMode: "normal",
solidColor: "#000",
solidOpacity: 1,
marker: "none"
}} color="#000" fontWeight={400} fontFamily="sans-serif" overflow="visible" /><path d="M12 10v2h-2v2h2v2h2v-2h2v-2h-2v-2z" /></g></svg>;
}
export default SvgComponent;