UNPKG

chatui2

Version:

The React library for Chatbot UI

11 lines (10 loc) 359 B
import React from 'react'; export interface TextProps { className?: string; as?: React.ElementType; align?: 'left' | 'center' | 'right' | 'justify'; breakWord?: boolean; truncate?: boolean | number; children?: React.ReactNode; } export declare const Text: React.ForwardRefExoticComponent<TextProps & React.RefAttributes<HTMLElement>>;