react-winplaza-98
Version:
React components with a Win98 a e s t h e c t i c
10 lines (9 loc) • 382 B
TypeScript
import React from 'react';
type OmitProperties = 'id' | 'name';
interface TextAreaProps extends Omit<React.ComponentProps<'textarea'>, OmitProperties> {
name: string;
label?: string;
labelPosition?: 'left' | 'top';
}
declare const TextArea: React.ForwardRefExoticComponent<Omit<TextAreaProps, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;
export default TextArea;