web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
28 lines (26 loc) • 1.41 kB
JavaScript
import * as React from "react";
function SvgComponent(props) {
return <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.003 16" width="1em" height="1em" {...props}><g fill="#2e3436"><path d="M11 1a2 2 0 100 4 2 2 0 000-4zM5 4a2 2 0 100 4 2 2 0 000-4zm5 2c-1.31 0-2.407.835-2.819 2h7.637A2.985 2.985 0 0012 6h-1zM4 9c-1.662 0-3 1.338-3 3v1c0 .554.446 1 1 1h6c.554 0 1-.446 1-1v-1c0-1.662-1.338-3-3-3z" style={{
marker: "none"
}} color="#bebebe" overflow="visible" /><path d="M15.16 15H16v-1c.008-1.673 0-5 0-5h-6v.846A1 1 0 0011 11h1.586l-1.643 1.643-.65.65c-.654.636-.185 1.744.726 1.717.26-.008.507-.117.688-.303l.628-.628L14 12.414V14c0 .681.449 1 1.16 1z" 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="#000" fontWeight={400} fontFamily="sans-serif" overflow="visible" /></g></svg>;
}
export default SvgComponent;