Repository URL to install this package:
Version:
0.9.6 ▾
|
import { ReactNode } from 'react'
/**
* PROPS
*/
export interface DefaultProps {
className?: string
children?: ReactNode
content: string
}
export interface DefaultStates {}
// Main component properties
export interface TextProps extends DefaultProps {
breedType: string
enableBg: boolean
}