UNPKG

artha-on-off-ramp

Version:

React SDK for Artha On-Off Ramp

21 lines (20 loc) 499 B
import React from "react"; interface TabItem { [key: string]: any; title?: string; key?: string; } interface AppTabsProps { tabPosition?: 'top' | 'right' | 'bottom' | 'left'; className?: string; activeKey?: string; onChange?: (activeKey: string) => void; defaultActiveKey?: string; list?: TabItem[]; itemFields?: { title: string; key: string; }; } declare const AppTabs: React.FC<AppTabsProps>; export default AppTabs;