UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

9 lines (8 loc) 325 B
/// <reference types="react" /> import { TextareaProps } from "@vnxjs/components"; export interface NativeTextareaProps extends TextareaProps { nativeProps?: Record<string, string>; readonly?: boolean; } declare function NativeTextarea(props: NativeTextareaProps): JSX.Element; export default NativeTextarea;