web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
13 lines (11 loc) • 781 B
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="#2e3436"><path d="M1.531.469L.47 1.53l14 14 1.062-1.062z" /><path d="M3.025 5.498A5.067 5.067 0 003 6c0 .173.014.332.031.5.014.167.036.336.063.5C3.666 10.514 6 13.004 8 15.004c.714-.714 1.47-1.494 2.174-2.358zM8 1C6.103 1 4.472 2.069 3.625 3.625L6 6a2 2 0 112 2l3.213 3.213c.795-1.228 1.432-2.61 1.693-4.213.027-.164.049-.333.063-.5.017-.168.031-.327.031-.5a5 5 0 00-5-5z" style={{
isolation: "auto",
mixBlendMode: "normal",
solidColor: "#000",
solidOpacity: 1,
marker: "none"
}} color="#000" overflow="visible" /></g></svg>;
}
export default SvgComponent;