UNPKG

geoiq-frontend-ui-kit

Version:

This project is a UI kit for GeoIQ's frontend. It's built with React, TypeScript, and Vite.

11 lines (10 loc) 432 B
import { VariantProps } from 'class-variance-authority'; import { TextAreaVariants } from './textarea.styles'; export interface TextareaProps extends Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'disabled'>, VariantProps<typeof TextAreaVariants> { disabled?: boolean; inputLabel?: string; showTextCount?: boolean; maximumTextCount?: number; id?: string; } //# sourceMappingURL=textarea.types.d.ts.map