@hhgtech/hhg-components
Version:
Hello Health Group common components
20 lines (19 loc) • 555 B
TypeScript
import React from 'react';
export type Props = {
placeholder: string;
id?: string;
name?: string;
height?: string;
labelText?: string;
labelColor?: string;
value?: string;
className?: string;
onChange?: (v: string) => void;
onKeyPress?: (e: KeyboardEvent) => void;
disabled?: boolean;
};
/**
* @deprecated Consider to use at '@hhgtech/hhg-components/mantine'
*/
declare const TextArea: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLTextAreaElement>>;
export { TextArea };