@hypernetlabs/web-ui
Version:
Web ui react components for hypernet protocol
14 lines • 407 B
TypeScript
import React from "react";
interface SelectInputProps {
onChange?: (event: React.ChangeEvent<HTMLSelectElement>) => void;
label?: string;
disabled?: boolean;
value?: string;
fullWidth?: boolean;
options: any[];
optionLabelKey: string;
optionValueKey: string;
}
export declare const SelectInput: React.FC<SelectInputProps>;
export {};
//# sourceMappingURL=SelectInput.d.ts.map