UNPKG

welcome-ui

Version:

Customizable design system with react, typescript, tailwindcss and ariakit.

8 lines (7 loc) 269 B
import { ComponentPropsWithoutRef } from 'react'; export interface TextareaOptions { isAdaptative?: boolean; minRows?: number; variant?: 'danger' | 'success' | 'warning'; } export type TextareaProps = ComponentPropsWithoutRef<'textarea'> & TextareaOptions;