web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
25 lines (23 loc) • 1.18 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.525 0C4.433 0 3.61.68 3.295 1.295c-.314.615-.3 1.205-.3 1.205v13.117l5-2.5 4.997 2.5.01-7.617h-.004l-.004-5.5s.014-.584-.293-1.197C12.394.689 11.577 0 10.494 0zm0 2h4.97c.416 0 .349.06.417.197a.956.956 0 01.082.303l.004 7.5-.002 2.383-3.002-1.5-3 1.5V2.5s.013-.16.082-.295c.069-.134.01-.205.45-.205z" 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" fill="#2e3436" fillRule="evenodd" /></svg>;
}
export default SvgComponent;