web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
25 lines (23 loc) • 1.23 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.984 0A1 1 0 006 1v3.586L4.707 3.293a1 1 0 10-1.414 1.414L6 7.414v1.172l-2.707 2.707a1 1 0 101.414 1.414L6 11.414V15a1 1 0 001.707.707l4-4a1 1 0 000-1.414L9.414 8l2.293-2.293a1 1 0 000-1.414l-4-4A1 1 0 006.984 0zM8 3.414L9.586 5 8 6.586zm0 6L9.586 11 8 12.586z" 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"
}} color="#000" fontWeight={400} fontFamily="sans-serif" overflow="visible" /><path d="M3 3h1v1H3zm0 9h1v1H3zm3 3h1v1H6zM6 0h1v1H6z" /></g></svg>;
}
export default SvgComponent;