web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
31 lines (29 loc) • 1.52 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 color="#000" fill="#2e3436"><path style={{
marker: "none"
}} d="M5.969 7.969A2.969 2.969 0 013 10.937 2.969 2.969 0 01.031 7.97 2.969 2.969 0 013.001 5a2.969 2.969 0 012.968 2.969zM15.937 12.969a2.969 2.969 0 01-2.968 2.969A2.969 2.969 0 0110 12.967 2.969 2.969 0 0112.969 10a2.969 2.969 0 012.968 2.969zM15.937 2.969a2.969 2.969 0 01-2.968 2.969A2.969 2.969 0 0110 2.967 2.969 2.969 0 0112.969 0a2.969 2.969 0 012.968 2.969z" overflow="visible" /><path d="M12.613 2.146L.748 7.924l11.854 5.969.9-1.788-8.248-4.15 8.236-4.012z" 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",
whiteSpace: "normal",
shapePadding: 0,
isolation: "auto",
mixBlendMode: "normal",
solidColor: "#000",
solidOpacity: 1,
marker: "none"
}} fontWeight={400} fontFamily="sans-serif" overflow="visible" /></g></svg>;
}
export default SvgComponent;