@brizy/ui-icons
Version:
6 lines (5 loc) • 493 B
JavaScript
import React from "react";
export const Tabs = ({ className, onClick, style }) => (React.createElement("svg", { className: className, style: style, onClick: onClick, width: "1em", height: "1em", viewBox: "0 0 16 16" },
React.createElement("g", { fill: "currentColor" },
React.createElement("rect", { width: 6, height: 2, x: 9, y: 2, rx: 1 }),
React.createElement("path", { d: "M2 1h5a1 1 0 0 1 1 1v3h6a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1z" }))));