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