UNPKG

linkmore-design

Version:

🌈 πŸš€lmη»„δ»ΆεΊ“γ€‚πŸš€

19 lines (18 loc) β€’ 485 B
import React from 'react'; export interface ILmTabsProps { items: { key: string; name: string | React.ReactNode; children?: string | React.ReactNode; }[]; activeKey?: string; onChange?: (activeKey: string) => void; } export declare type TabSizeMap = Map<React.Key, { width: number; height: number; left: number; top: number; }>; declare function LmCustomTabs(props: ILmTabsProps): React.JSX.Element; export default LmCustomTabs;