@yamada-ui/react
Version:
React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion
22 lines (21 loc) • 1.14 kB
TypeScript
import { ThemeProps } from "../../core/system/index.types.js";
import { Component, HTMLStyledProps } from "../../core/components/index.types.js";
import "../../core/index.js";
import { FieldProps } from "../field/field.js";
import { UseInputBorderProps } from "../input/use-input-border.js";
import { TextareaStyle } from "./textarea.style.js";
import { UseTextareaProps } from "./use-textarea.js";
import "../../index.js";
import * as react2632 from "react";
//#region src/components/textarea/textarea.d.ts
interface TextareaProps extends HTMLStyledProps<"textarea">, ThemeProps<TextareaStyle>, UseInputBorderProps, FieldProps, UseTextareaProps {}
declare const TextareaPropsContext: react2632.Context<Partial<TextareaProps> | undefined>, useTextareaPropsContext: () => Partial<TextareaProps> | undefined;
/**
* `Textarea` is a component used to obtain multi-line text input.
*
* @see https://yamada-ui.com/docs/components/textarea
*/
declare const Textarea: Component<"textarea", TextareaProps>;
//#endregion
export { Textarea, TextareaProps, TextareaPropsContext, useTextareaPropsContext };
//# sourceMappingURL=textarea.d.ts.map