@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
10 lines (9 loc) • 335 B
TypeScript
/// <reference types="react" />
import { InputProps } from "@vnxjs/components";
import { InputColor } from "./input.shared";
export interface NativeInputProps extends InputProps {
readonly?: boolean;
color?: InputColor;
}
declare function NativeInput(props: NativeInputProps): JSX.Element;
export default NativeInput;