@lax-wp/design-system
Version:
A comprehensive React + TypeScript design system built with Vite, providing reusable UI components for the LAX web portal applications. Features a complete set of form components, data display elements, and interactive controls with full TypeScript suppor
14 lines (13 loc) • 400 B
TypeScript
import { TResolveToConfig, TSize, TSuffixRecord, TabVariant } from './types';
declare const TabDragOverlay: React.FC<{
draggingTab: string;
suffixRecord: TSuffixRecord;
linkConfig?: TResolveToConfig;
size?: TSize;
parentContainer: string;
variant: TabVariant;
selectedId: string;
linkComponent?: any;
resolvedTo?: string | null;
}>;
export default TabDragOverlay;