web-toolkit
Version:
A GTK inspired toolkit designed to build awesome web apps
9 lines (7 loc) • 473 B
JavaScript
import * as React from "react";
function SvgComponent(props) {
return <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.982 16" width="1em" height="1em" {...props}><path d="M3.188 2C2.524 2 2 2.549 2 3.219v9.562C2 13.451 2.525 14 3.188 14h9.624c.663 0 1.188-.549 1.188-1.219V3.22C14 2.549 13.475 2 12.812 2zM7 5h2v2h2v2H9v2H7V9H5V7h2z" style={{
marker: "none"
}} color="#bebebe" overflow="visible" fill="#474747" /></svg>;
}
export default SvgComponent;