web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
34 lines (32 loc) • 1.68 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 fontWeight={400} fill="#474747"><path d="M11 12h-1c-.257 0-.528.118-.719.284l-1.28 1.163-1.282-1.163A1.145 1.145 0 006 12H5v.908c0 .28.09.501.281.68L8.001 16l2.718-2.411a.88.88 0 00.281-.681V12z" style={{
lineHeight: "normal",
InkscapeFontSpecification: "'Bitstream Vera Sans'",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
}} color="#bebebe" fontFamily="Bitstream Vera Sans" overflow="visible" /><path d="M4 0v2h6c.428 0 1 .614 1 1v1H6c-.92 0-1.736.38-2.25.965a3.037 3.037 0 00-.736 2.045 3.08 3.08 0 00.758 2.027C4.284 9.616 5.092 10 6 10h7V3a3 3 0 00-3-3zm2 6h5v2H6c-.398 0-.579-.116-.73-.287a1.138 1.138 0 01-.256-.723c-.003-.28.093-.54.238-.705C5.397 6.12 5.578 6 6 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",
shapePadding: 0,
isolation: "auto",
mixBlendMode: "normal",
marker: "none"
}} color="#000" fontFamily="sans-serif" overflow="visible" /></g></svg>;
}
export default SvgComponent;