import * as React from 'react'; import { Ref } from 'react'; import { HTMLFieldProps, connectField, filterDOMProps } from 'uniforms'; export type LongTextFieldProps = HTMLFieldProps< string, HTMLDivElement, { inputRef?: Ref } >; function LongText({ disabled, id, inputRef, label, name, onChange, placeholder, readOnly, value, ...props }: LongTextFieldProps) { return (
{label && }