Skip to content
Snippets Groups Projects
Verified Commit 584a1442 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

feat: new panel tab support

parent 2cf927b6
No related branches found
No related tags found
No related merge requests found
Pipeline #1698 failed
......@@ -14,6 +14,7 @@ export * from "./modal/modal";
export * from "./overlay/overlay";
export * from "./pair/pair";
export * from "./panel-split/panel-split";
export * from "./panel-tab/panel-tab";
export * from "./paragraph/paragraph";
export * from "./registers-gb/registers-gb";
export * from "./section/section";
......
import React, { FC, ReactNode } from "react";
import "./panel-split.css";
type PanelTabProps = {
tabs?: ReactNode[];
style?: string[];
};
export const PanelTab: FC<PanelTabProps> = ({
tabs,
style = []
}) => {
const classes = () => ["panel-tab", ...style].join(" ");
return (
<div className={classes()}>
</div>
);
};
export default PanelTab;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment