UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

7 lines (6 loc) 233 B
import React, { ComponentProps } from 'react'; type FieldErrorProps = ComponentProps<'div'> & { text?: string; }; export declare const FieldError: ({ className, text, ...props }: FieldErrorProps) => React.JSX.Element; export {};