UNPKG

@clubmed/trident-ui

Version:

Shared ClubMed React UI components

11 lines (10 loc) 499 B
import { type FormControlProps } from './FormControl.js'; import { type IconicTypes } from '../../atoms/Icons'; import { type SelectHTMLAttributes } from 'react'; export interface SelectProps<Value> extends FormControlProps<Value, SelectHTMLAttributes<HTMLSelectElement>> { description?: string; iconType?: IconicTypes; errorMessage?: string; dataTestId?: string; } export declare const Select: <Value = string>(props: SelectProps<Value>) => import("react/jsx-runtime").JSX.Element;