UNPKG

@stakefish/ui

Version:

<div align="center"> <a href="https://www.npmjs.com/package/@stakefish/ui"><img src="https://gateway.pinata.cloud/ipfs/QmbZL1ceA8Yiz2pKALTg919jYx141DPUGegC9L4XpyayW5" width="300" /></a> </div>

14 lines (13 loc) 541 B
import React from "react"; import { FormControlProps as MuiFormControlProps } from "@mui/material/FormControl"; import { SelectProps } from "./Select"; declare type ExcludedProps = "onBlur" | "onChange" | "onFocus" | "onKeyDown" | "onKeyUp"; export interface SelectFieldProps extends Omit<MuiFormControlProps, ExcludedProps> { id: string; label?: string; helperText?: string; fullWidth?: boolean; selectProps: SelectProps; } declare const SelectField: React.FC<SelectFieldProps>; export default SelectField;