UNPKG

welcome-ui

Version:

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

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