UNPKG

@chatui/core

Version:

The React library for Chatbot UI

13 lines (12 loc) 369 B
import React from 'react'; export type TabsProps = { className?: string; index?: number; color?: 'primary'; size?: 'md' | 'lg'; scrollable?: boolean; hideNavIfOnlyOne?: boolean; onChange?: (index: number, event: React.MouseEvent) => void; children: React.ReactNode; }; export declare const Tabs: (props: TabsProps) => React.JSX.Element;