UNPKG

@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

13 lines (12 loc) 476 B
import type { TSwitchProps, TTypeKey, TNavigationUtils } from './types'; import type { ReactNode } from 'react'; type TProps<T extends TTypeKey> = TSwitchProps<T> & { iconsOnly?: boolean; draggingTab?: boolean; disableAnimation?: boolean; tabOptions?: ReactNode; color?: string; navigationUtils?: TNavigationUtils; }; declare const TabSwitch: <T extends TTypeKey>(props: TProps<T>) => import("react/jsx-runtime").JSX.Element; export default TabSwitch;