retabler
Version:
React Component library via Tabler
19 lines (18 loc) • 487 B
TypeScript
import React from "react";
interface TabProps {
children: any;
title: React.ReactNode;
eventKey: string;
}
interface TabsProps {
cards?: boolean;
fill?: boolean;
alt?: boolean;
children: React.ReactElement<TabProps>[] | React.ReactElement<TabProps>;
defaultEventKey?: string;
}
declare const Tabs: {
({ cards, children, defaultEventKey, ...props }: TabsProps): JSX.Element;
Tab: (props: TabProps) => any;
};
export default Tabs;