web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
28 lines (26 loc) • 1.44 kB
JavaScript
import * as React from "react";
function SvgComponent(props) {
return <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.006 16" width="1em" height="1em" {...props}><path d="M10.006 2a1 1 0 01.707.293l5 5a1 1 0 010 1.414l-5 5a1 1 0 01-.707.293h-8.5s-.334.014-.697-.168C.445 13.65.006 13.083.006 12.5v-9c0-.583.44-1.15.803-1.332.363-.182.697-.168.697-.168zM9 5H7.969a1.04 1.04 0 00-.688.313L6 6.593l-1.312-1.28C4.422 5.082 4.24 5.006 4 5H3v1c0 .286.034.55.25.75l1.281 1.281-1.25 1.25A1.015 1.015 0 003 10v1h1c.265 0 .53-.093.719-.281L6 9.438l1.281 1.28c.188.189.454.282.719.282h1v-1c0-.265-.093-.53-.281-.719l-1.282-1.25L8.72 6.75A.909.909 0 009 6z" 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" fill="#2e3436" fillRule="evenodd" /></svg>;
}
export default SvgComponent;