web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
27 lines (25 loc) • 2 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 4.006c-2.195 0-4 1.805-4 4 0 2.195 1.805 4 4 4 2.195 0 4-1.805 4-4 0-2.195-1.805-4-4-4z" style={{
lineHeight: "normal",
InkscapeFontSpecification: "Sans",
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" overflow="visible" /><path d="M7.5 0h1c.277 0 .5.223.5.5v2c0 .277-.223.5-.5.5h-1a.499.499 0 01-.5-.5v-2c0-.277.223-.5.5-.5zm0 13h1c.277 0 .5.223.5.5v2c0 .277-.223.5-.5.5h-1a.499.499 0 01-.5-.5v-2c0-.277.223-.5.5-.5zM1.99 2.697l.707-.707a.499.499 0 01.707 0l1.414 1.414a.499.499 0 010 .707l-.707.707a.499.499 0 01-.707 0L1.99 3.404a.499.499 0 010-.707zm9.192 9.193l.707-.708a.499.499 0 01.707 0l1.415 1.414a.499.499 0 010 .707l-.708.707a.499.499 0 01-.707 0l-1.414-1.414a.499.499 0 010-.707zm-8.485 2.12l-.707-.707a.499.499 0 010-.707l1.414-1.414a.499.499 0 01.707 0l.707.707a.499.499 0 010 .707L3.404 14.01a.499.499 0 01-.707 0zm9.193-9.192l-.708-.707a.499.499 0 010-.707l1.414-1.414a.499.499 0 01.708 0l.707.707a.499.499 0 010 .707l-1.415 1.414a.499.499 0 01-.707 0zM16 7.5v1c0 .277-.223.5-.5.5h-2a.499.499 0 01-.5-.5v-1c0-.277.223-.5.5-.5h2c.277 0 .5.223.5.5zm-13 0v1c0 .277-.223.5-.5.5h-2a.499.499 0 01-.5-.5v-1c0-.277.223-.5.5-.5h2c.277 0 .5.223.5.5z" /></g></svg>;
}
export default SvgComponent;