@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
15 lines (14 loc) • 401 B
TypeScript
import { TSuffixRecord, TabVariant } from './types';
declare const MoreButton: React.FC<{
variant: TabVariant;
size: string;
draggingOver: string | null;
title: string;
showMoreDropdown: boolean;
handleShowMoreDropdown: () => void;
selectedId: string;
suffixRecord: TSuffixRecord;
linkComponent?: any;
resolvedTo?: string | null;
}>;
export default MoreButton;