@visa/nova-react
Version:
Visa Product Design System Nova React library
21 lines (20 loc) • 786 B
TypeScript
import { ForwardedRef } from 'react';
export type TextAreaProperties = {
/** @ignore */
children?: never;
/** @ignore */
className?: string;
/** fixed height */
fixed?: boolean;
};
/**
* Input component with optional dynamic sizing, usually used for long-form text input.
* @docs {@link https://design.visa.com/react/components/textarea | See Docs}
* @vgar TODO
* @wcag TODO
*/
declare const _default: <HTMLElementType = HTMLInputElement>(props: {
children?: import("react").ReactNode | import("react").ReactNode[];
ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & TextAreaProperties) => import("react").ReactElement;
export default _default;