web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
33 lines (31 loc) • 1.57 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} fill="#2e3436"><path d="M11.275.074A1 1 0 0010.9 0H5.102a1 1 0 00-.71.295l-4.1 4.1a1 1 0 00-.293.706L0 10.898a1 1 0 00.294.71l4.1 4.1a1 1 0 00.706.293L10.898 16a1 1 0 00.71-.294l4.1-4.1a1 1 0 00.293-.706L16 5.102a1 1 0 00-.294-.71l-4.1-4.1a1 1 0 00-.331-.218zM10.485 2L14 5.515v4.97L10.485 14h-4.97L2 10.485v-4.97L5.515 2z" 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"
}} fontFamily="sans-serif" overflow="visible" /><path d="M6.994 4h2v3l-.25 2H7.275l-.28-2zm1 5.75a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5z" style={{
lineHeight: "normal",
InkscapeFontSpecification: "Sans",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
}} fontFamily="Sans" overflow="visible" /></g></svg>;
}
export default SvgComponent;