web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
45 lines (43 loc) • 2.12 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 color="#000" fontWeight={400} fontFamily="sans-serif" fill="#474747"><path d="M5 3v2h6c.428 0 1 .614 1 1v1H7c-.92 0-1.736.38-2.25.965a3.037 3.037 0 00-.737 2.045c.006.72.246 1.449.758 2.027.513.579 1.32.963 2.229.963h7V6a3 3 0 00-3-3zm2 6h5v2H7c-.398 0-.579-.116-.73-.287a1.138 1.138 0 01-.257-.723c-.002-.28.093-.54.239-.705C6.397 9.12 6.577 9 7 9z" 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"
}} overflow="visible" /><path d="M4 3v2h5c.428 0 1 .614 1 1v1H5c-.92 0-1.736.38-2.25.965a3.037 3.037 0 00-.737 2.045c.006.72.246 1.449.758 2.027.513.579 1.32.963 2.229.963h7V6a3 3 0 00-3-3zm1 6h5v2H5c-.398 0-.579-.116-.73-.287a1.138 1.138 0 01-.257-.723c-.002-.28.093-.54.239-.705C4.397 9.12 4.577 9 5 9z" 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"
}} overflow="visible" /></g></svg>;
}
export default SvgComponent;