web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
9 lines (7 loc) • 339 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}><path d="M8.07.918L1 7.988h3v4h8v-4h3.143zM4 12.988v2h8v-2z" style={{
marker: "none"
}} color="#bebebe" fill="#2e3436" /></svg>;
}
export default SvgComponent;