UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

14 lines (13 loc) 396 B
/// <reference types="react" /> import { TabEvent, TabObject } from "./tabs.shared"; interface TabsContentProps { value: any; lazyRender: boolean; duration?: number; animated: boolean; swipeable: boolean; tabObjects: TabObject[]; onTabChange?(event: TabEvent): void; } export declare function TabsContent(props: TabsContentProps): JSX.Element; export {};