UNPKG

projex-ui-dev

Version:

Projex' user interface

12 lines (11 loc) 421 B
import React from 'react'; import { FormItemProps } from '../FormItem/FormItem'; type Props = Omit<FormItemProps, 'children'> & { name?: string; placeholder?: string; large?: boolean; value: string; setValue: React.Dispatch<React.SetStateAction<string>>; }; declare const Textarea: ({ label, disabled, name, placeholder, large, value, setValue }: Props) => React.JSX.Element; export default Textarea;