UNPKG

webcoreui

Version:

UI component and template library for Astro, Svelte, and React apps styled with Sass.

11 lines (9 loc) 228 B
export type TextareaTarget = { currentTarget: HTMLTextAreaElement } export type TextareaProps<T extends object = object> = { label?: string subText?: string value?: string className?: string } & T