hightable
Version:
A dynamic windowed scrolling table component for react
14 lines (13 loc) • 577 B
TypeScript
import { KeyboardEvent, MouseEvent, ReactNode } from 'react';
interface ColumnMenuButtonProps {
onClick?: (e: MouseEvent<HTMLElement> | KeyboardEvent<HTMLElement>) => void;
onEscape?: (e: KeyboardEvent) => void;
tabIndex?: number;
isExpanded?: boolean;
menuId?: string;
disabled?: boolean;
'aria-label'?: string;
icon?: ReactNode;
}
export default function ColumnMenuButton({ onClick, onEscape, tabIndex, isExpanded, menuId, disabled, 'aria-label': ariaLabel, icon, }: ColumnMenuButtonProps): import("react/jsx-runtime").JSX.Element;
export {};