dgz-ui
Version:
Custom ui library using React.js, Shadcn/ui, TailwindCSS, Typescript
15 lines • 559 B
TypeScript
import * as React from 'react';
import type { VariantProps } from 'class-variance-authority';
import { inputVariants } from './input.tsx';
/**
* Props for the Textarea component.
*/
export type TextareaProps = React.ComponentProps<'textarea'> & VariantProps<typeof inputVariants>;
/**
* Textarea - Multiline text input with Input variants styling.
*
* @component
*/
declare const Textarea: React.ForwardRefExoticComponent<Omit<TextareaProps, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;
export { Textarea };
//# sourceMappingURL=textarea.d.ts.map