react-cascading-menu
Version:
React-Cascading-Menu is a multi-selectable cascading menu component for React, providing horizontal navigation and global search for efficient option selection.
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;