web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
21 lines (19 loc) • 1.11 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 fill="#474747"><path d="M0 5h2.484l2.97-3H6v12h-.475l-3.04-3H0z" style={{
marker: "none"
}} color="#bebebe" overflow="visible" /><path d="M15 8c0-2.814-1-5.172-2.586-7H11v1.48C12.265 4 13 5.7 13 8c0 2.3-.78 4-2 5.52V15h1.381C13.847 13.36 15 10.814 15 8z" style={{
marker: "none"
}} color="#000" overflow="visible" /><path d="M12 8c0-2.166-.739-4.02-2-5H9v2c.607.789 1 1.76 1 3 0 1.241-.393 2.22-1 3v2h1c1.223-.995 2-2.873 2-5z" style={{
marker: "none"
}} color="#000" overflow="visible" /><path d="M9 8c0-1.257-.312-2.216-1-3H7v6h1c.672-.837 1-1.742 1-3z" style={{
lineHeight: "normal",
InkscapeFontSpecification: "Sans",
textIndent: 0,
textAlign: "start",
textDecorationLine: "none",
textTransform: "none",
marker: "none"
}} color="#000" fontWeight={400} fontFamily="Sans" overflow="visible" /></g></svg>;
}
export default SvgComponent;