web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
34 lines (32 loc) • 1.55 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} fill="#474747"><path d="M7 3v10h2V3z" 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"
}} fontFamily="sans-serif" overflow="visible" /><path d="M4 10v1c0 .265.093.53.281.719l3.72 3.719 3.718-3.72c.188-.187.281-.453.281-.718v-1h-1c-.265 0-.53.093-.719.281l-2.28 2.281-2.282-2.28A1.015 1.015 0 005 10zm0-4V5c0-.265.093-.53.282-.719L8 .562l3.719 3.72c.188.187.281.453.281.718v1h-1c-.265 0-.53-.093-.718-.281L8 3.437 5.72 5.72A1.015 1.015 0 015 6z" style={{
lineHeight: "normal",
InkscapeFontSpecification: "'Bitstream Vera Sans'",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
}} fontFamily="Bitstream Vera Sans" overflow="visible" /></g></svg>;
}
export default SvgComponent;