react-cascading-menu
Version:
A powerful React cascading dropdown component with multi-selection, search functionality, and hierarchical navigation. Perfect for building category selectors, dependent dropdowns, and nested menu systems with TypeScript support.
18 lines (17 loc) • 422 B
TypeScript
import React from "react";
export declare const ICONS: {
CANCEL: string;
CHECKBOX_CHECKED: string;
CHECKBOX_UNCHECKED: string;
RADIO_CHECKED: string;
RADIO_UNCHECKED: string;
};
interface Props {
icon: string;
width?: number;
height?: number;
applytheme?: string;
layout?: "horizontal" | "vertical";
}
declare const Icons: (props: Props) => React.JSX.Element;
export default Icons;