Repository URL to install this package:
|
Version:
2.7.11 ▾
|
import { ReactNode } from 'react'
export interface TextRenderProp extends Function {
(props: TextProps): ReactNode
}
export interface TextProps {
className?: string
children?: ReactNode
dataQa?: string
//
text?: string
content?: string
backgroundColor?: string
textColor?: string
backgroundImage?: string
//
renderText?: TextRenderProp
renderBox?: TextRenderProp
renderWrapper?: TextRenderProp
}