Repository URL to install this package:
|
Version:
2.8.0-studio-release ▾
|
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
}