UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

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