UNPKG

table-reuse

Version:

Common, reusable React UI components

10 lines (9 loc) 287 B
import { ClickAction } from "../dataTypes"; export interface ActionViewProps { actions: ClickAction[]; maxVisible?: number; direction?: "horizontal" | "vertical"; gap?: number; moreIcon?: React.ReactNode; } export declare const ActionView: React.FC<ActionViewProps>;