react-components-design-system
Version:
React UI component for design system FIS ES PB5
19 lines (18 loc) • 701 B
TypeScript
import "./OverflowMenu.scss";
import { ListOverflowMenu } from "./OverflowMenuList";
export interface CustomProps {
/**List object action {name,function} of menu */
list?: ListOverflowMenu[];
/**Change the size of button */
size?: "md" | "xl";
/**Append this component to body */
appendToBody?: boolean;
/**Option to set type vertical or horizontal */
type?: "vertical" | "horizontal";
/**option change style type of overflowMenu */
isActionRowTable?: boolean;
/**Option to set not allow to click Component */
disabled?: boolean;
}
declare function OverflowMenu(props: CustomProps): import("react/jsx-runtime").JSX.Element;
export default OverflowMenu;