web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
28 lines (26 loc) • 1.29 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="M6 0v5.523l2 2V3.414L9.586 5 7.53 7.055l1.414 1.414 2.762-2.762a1 1 0 000-1.414l-4-4A1 1 0 007 0h-.016zm0 8.473v.113l-2.707 2.707A.996.996 0 003 12v1h1a.996.996 0 00.707-.293L6 11.414V16h1a1 1 0 00.707-.293l2.764-2.764-1.414-1.414L8 12.586v-2.113z" 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
}} color="#000" fontWeight={400} fontFamily="sans-serif" overflow="visible" /><path d="M1.531.469L.47 1.53l14 14 1.062-1.062z" /></g></svg>;
}
export default SvgComponent;