web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
34 lines (32 loc) • 1.57 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="M3 7v2h10V7z" 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" /><path d="M10 4v1c0 .257.13.528.313.719L12.593 8l-2.28 2.281c-.183.19-.313.462-.313.719v1h1c.31 0 .552-.09.75-.281L15.406 8 11.75 4.281C11.552 4.091 11.31 4 11 4zM6 4v1c0 .257-.13.528-.312.719L3.406 8l2.282 2.281c.182.19.312.462.312.719v1H5c-.31 0-.552-.09-.75-.281L.594 8 4.25 4.281C4.448 4.091 4.69 4 5 4z" 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" /></g></svg>;
}
export default SvgComponent;