plane/ui/TextArea/types.d.ts

13 lines
425 B
TypeScript
Raw Normal View History

2022-11-19 14:21:26 +00:00
import React from "react";
import type { UseFormRegister, RegisterOptions, FieldError } from "react-hook-form";
export interface Props extends React.ComponentPropsWithoutRef<"textarea"> {
label?: string;
value?: string | number | readonly string[];
name: string;
register?: UseFormRegister<any>;
mode?: "primary" | "transparent" | "secondary" | "disabled";
validations?: RegisterOptions;
error?: FieldError;
}