Repository URL to install this package:
|
Version:
2.8.4 ▾
|
import { ReactNode } from 'react';
export interface ButtonRenderProp extends Function {
(props: ButtonProps): ReactNode;
}
export interface ButtonProps {
className?: string;
children?: ReactNode;
dataQa?: string;
text?: string;
content?: string;
textColor?: string;
backgroundColor?: string;
renderButton?: ButtonRenderProp;
renderWrapper?: ButtonRenderProp;
}