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