UNPKG

@dossierhq/design

Version:

The design system for Dossier.

15 lines (14 loc) 578 B
import type { ChangeEventHandler, CSSProperties } from 'react'; import { type TextStyle } from '../../utils/TextStylePropsUtils.js'; interface TextAreaProps { className?: string; style?: CSSProperties; fixedSize?: boolean; readOnly?: boolean; textStyle?: TextStyle; defaultValue?: string; value?: string; onChange?: ChangeEventHandler<HTMLTextAreaElement>; } export declare function TextArea({ className, fixedSize, readOnly, style, textStyle, defaultValue, value, onChange, }: TextAreaProps): import("react/jsx-runtime").JSX.Element; export {};