UNPKG

@graphql-hive/laboratory

Version:

14 lines (13 loc) 353 B
interface ItemProps { label: string; children: React.ReactNode; } export interface TabsProps { children: (React.ReactElement<ItemProps> | null)[]; suffix?: React.ReactNode; } export declare const Tabs: { ({ children, suffix }: TabsProps): import("react/jsx-runtime").JSX.Element; Item: (_props: ItemProps) => null; }; export {};