@conductionnl/nl-design-system
Version:
NL design system components created by Conduction
17 lines (16 loc) • 324 B
TypeScript
import * as React from "react";
interface TabsProps {
tabs: ITabItems[];
}
interface ITabItems {
name: string;
active?: boolean;
id: string;
onClick?: () => void;
}
/**
* This components renders tabs.
* @returns JSX of the generated tabs.
*/
export declare const Tabs: React.FC<TabsProps>;
export {};