UNPKG

antd-mobile

Version:

<img src="https://gw.alipayobjects.com/mdn/rms_ee68a8/afts/img/A*hjjDS5Yy-ooAAAAAAAAAAAAAARQnAQ" alt="logo" width="100%" />

16 lines (15 loc) 530 B
import { FC, ReactNode } from 'react'; import { NativeProps } from '../../utils/native-props'; export declare type CapsuleTabProps = { title: ReactNode; disabled?: boolean; forceRender?: boolean; destroyOnClose?: boolean; } & NativeProps; export declare const CapsuleTab: FC<CapsuleTabProps>; export declare type CapsuleTabsProps = { activeKey?: string | null; defaultActiveKey?: string | null; onChange?: (key: string) => void; } & NativeProps; export declare const CapsuleTabs: FC<CapsuleTabsProps>;