UNPKG

@bottledbrains/ui

Version:

A React UI library based on Tailwind CSS

11 lines (10 loc) 352 B
import React, { FC } from "react"; import { CommonControlProps } from "../../types"; export interface TextAreaProps extends CommonControlProps { placeholder?: string; value?: string; onChange?: (event: React.ChangeEvent<HTMLTextAreaElement>) => void; rows?: number; } declare const TextArea: FC<TextAreaProps>; export default TextArea;