antd-mobile
Version:
<img src="https://gw.alipayobjects.com/mdn/rms_ee68a8/afts/img/A*hjjDS5Yy-ooAAAAAAAAAAAAAARQnAQ" alt="logo" width="100%" />
17 lines (16 loc) • 546 B
TypeScript
import { FC, ReactNode } from 'react';
import { NativeProps } from '../../utils/native-props';
export declare type JumboTabProps = {
title: ReactNode;
description: ReactNode;
disabled?: boolean;
forceRender?: boolean;
destroyOnClose?: boolean;
} & NativeProps;
export declare const JumboTab: FC<JumboTabProps>;
export declare type JumboTabsProps = {
activeKey?: string | null;
defaultActiveKey?: string | null;
onChange?: (key: string) => void;
} & NativeProps;
export declare const JumboTabs: FC<JumboTabsProps>;