seti-ramesesv1
Version:
Reusable components and context for Next.js apps
14 lines (13 loc) • 312 B
TypeScript
import React from "react";
export type TabItem = {
id: string;
label: string;
};
type TabListProps = {
items: TabItem[];
value?: string;
orientation?: "horizontal" | "vertical";
openItem?: (item: TabItem) => void;
};
declare const TabList: React.FC<TabListProps>;
export default TabList;