UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

15 lines (14 loc) 717 B
import { SystemProps } from "../system/system.js"; import { VuiComponent } from "../core/vui.js"; import { TextareaProps } from "./textarea.types.js"; import "../index.js"; //#region src/textarea/textarea.d.ts declare const TextareaBase: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, SystemProps, never>; /** * Displays a textarea element wrapped in a div to allow extra content, like counter. * Forwards many relevant props to the inner textarea. Exposes some props to the children via context. */ declare const Textarea: VuiComponent<"div", TextareaProps>; //#endregion export { Textarea, Textarea as default, TextareaBase }; //# sourceMappingURL=textarea.d.ts.map