UNPKG

sailboat-design

Version:
20 lines (19 loc) 489 B
/// <reference types="react" /> export declare const tabDisplayName = "Tab"; export interface ITabProps { label: string; index?: number; children?: React.ReactNode; disabled?: boolean; className?: string; style?: React.CSSProperties; onClick?: ({ index, label }: { index: number; label: string; }) => void; } export declare const Tab: { (props: ITabProps): JSX.Element; displayName: string; }; export default Tab;