UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

8 lines (7 loc) 291 B
import { Action } from "./TableRowActions"; import { Row } from "./types"; export type Props<T> = { selectedRows: any; actions: Action<T>[]; }; export declare const VuiTableBulkActions: <T extends Row>({ selectedRows, actions }: Props<T>) => import("react/jsx-runtime").JSX.Element;