@hypernetlabs/web-ui
Version:
Web ui react components for hypernet protocol
12 lines • 319 B
TypeScript
import React from "react";
interface TextInputProps {
onChange?: (value: string) => void;
label?: string;
disabled?: boolean;
value?: string;
fullWidth?: boolean;
placeholder?: string;
}
export declare const TextInput: React.FC<TextInputProps>;
export {};
//# sourceMappingURL=TextInput.d.ts.map