@clubmed/trident-ui
Version:
Shared ClubMed React UI components
11 lines (10 loc) • 486 B
TypeScript
import { FormControlProps } from './FormControl';
import { IconicTypes } from '@clubmed/trident-icons';
import { 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;