mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-02 04:33:40 +00:00
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import React, { ReactNode } from 'react';
|
|
|
|
interface TabItem {
|
|
id: string;
|
|
label: string;
|
|
icon?: ReactNode;
|
|
content: ReactNode;
|
|
}
|
|
|
|
interface TabsProps {
|
|
tabs: TabItem[];
|
|
defaultTab?: string;
|
|
}
|
|
|
|
export default function Tabs({ tabs, defaultTab }: TabsProps) {
|
|
const [activeTab, setActiveTab] = React.useState(defaultTab || tabs[0]?.id);
|
|
|
|
return (
|
|
<div>
|
|
<div className="border-b border-gray-200">
|
|
<div className="flex gap-1 -mb-px">
|
|
{tabs.map((tab) => (
|
|
<button
|
|
key={tab.id}
|
|
onClick={() => setActiveTab(tab.id)}
|
|
className={`px-4 py-2 font-medium text-sm border-b-2 transition-colors ${
|
|
activeTab === tab.id
|
|
? 'border-blue-600 text-blue-600'
|
|
: 'border-transparent text-gray-600 hover:text-gray-900 hover:border-gray-300'
|
|
} flex items-center gap-2`}
|
|
>
|
|
{tab.icon}
|
|
{tab.label}
|
|
</button>
|
|
))}
|
|
</div>
|
|
</div>
|
|
<div className="mt-6">
|
|
{tabs.find((tab) => tab.id === activeTab)?.content}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|