web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
45 lines (43 loc) • 1.88 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" fontWeight={400} fontFamily="sans-serif" fill="#2e3436"><path d="M5.006 2c.554 0 1 .446 1 1v3c0 .554-.446 1-1 1h-.711a6.972 6.972 0 004.71 4.71V11c0-.554.447-1 1-1h3c.555 0 1 .446 1 1v1.5a2.5 2.5 0 01-2.5 2.5h-.5c-5.504 0-10-4.495-10-10v-.5a2.5 2.5 0 012.5-2.5z" 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"
}} overflow="visible" /><path d="M11 0h-1v.832A1 1 0 0011 2h1.586L8.293 6.293c-.982.942.472 2.396 1.414 1.414L14 3.414V5a1 1 0 001.158 1H16V0z" 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"
}} overflow="visible" /></g></svg>;
}
export default SvgComponent;