Repository URL to install this package:
|
Version:
2.6.18 ▾
|
import { ReactNode } from 'react';
export interface ActionButtonNode {
(props: ActionButtonProps): ReactNode;
}
export interface ActionButtonProps {
className?: string;
children?: ReactNode;
renderWrapper?: ActionButtonNode;
renderButtons?: ActionButtonNode;
}