dgz-ui-shared
Version:
Custom ui library using React.js, Shadcn/ui, TailwindCSS, Typescript, dgz-ui library
10 lines • 329 B
TypeScript
import type { ReactNode } from 'react';
export interface ActionInterface {
label: ReactNode;
onClick: () => void;
}
export interface ActionsProps {
actions: ActionInterface[];
}
export declare const Actions: ({ actions }: ActionsProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Actions.d.ts.map