web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
34 lines (32 loc) • 1.48 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}><path d="M5.5 6A3.515 3.515 0 002 9.5C2 11.421 3.58 13 5.5 13H6v-2h-.5C4.66 11 4 10.34 4 9.5S4.66 8 5.5 8H12V6z" 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" fontWeight={400} fontFamily="sans-serif" overflow="visible" fill="#474747" /><path d="M9 3v1c0 .257.13.528.313.719L11.593 7l-2.28 2.281C9.13 9.471 9 9.743 9 10v1h1c.31 0 .552-.09.75-.281L14.406 7 10.75 3.281C10.552 3.091 10.31 3 10 3z" style={{
lineHeight: "normal",
InkscapeFontSpecification: "'Bitstream Vera Sans'",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
}} color="#bebebe" fontWeight={400} fontFamily="Bitstream Vera Sans" overflow="visible" fill="#474747" /></svg>;
}
export default SvgComponent;