web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
26 lines (24 loc) • 1.28 kB
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="M8 3a4 4 0 014 4c0 2.21-1.813 4.312-4 4H4V7a4 4 0 014-4zm0 2a2 2 0 100 4 2 2 0 000-4z" /><path d="M3.197 0A2.217 2.217 0 001 2.201V13.8c0 1.199.995 2.2 2.197 2.2h9.607A2.215 2.215 0 0015 13.799V2.2c0-1.199-.994-2.2-2.196-2.2zm0 2h9.607c.124 0 .196.07.196.201V13.8c0 .13-.072.201-.196.201H3.197C3.073 14 3 13.93 3 13.799V2.2c0-.13.073-.201.197-.201z" style={{
lineHeight: "normal",
fontVariantLigatures: "normal",
fontVariantPosition: "normal",
fontVariantCaps: "normal",
fontVariantNumeric: "normal",
fontVariantAlternates: "normal",
fontFeatureSettings: "normal",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textDecorationStyle: "solid",
textDecorationColor: "#000",
textTransform: "none",
textOrientation: "mixed",
shapePadding: 0,
isolation: "auto",
mixBlendMode: "normal",
marker: "none"
}} color="#bebebe" fontWeight={400} fontFamily="sans-serif" overflow="visible" /></g></svg>;
}
export default SvgComponent;