You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
433 B
12 lines
433 B
import * as React from 'react';
|
|
import { TabPosition, AnimatedConfig } from '../interface';
|
|
export interface TabPanelListProps {
|
|
activeKey: React.Key;
|
|
id: string;
|
|
rtl: boolean;
|
|
animated?: AnimatedConfig;
|
|
tabPosition?: TabPosition;
|
|
destroyInactiveTabPane?: boolean;
|
|
}
|
|
export default function TabPanelList({ id, activeKey, animated, tabPosition, rtl, destroyInactiveTabPane, }: TabPanelListProps): JSX.Element;
|