@clubmed/trident-ui
Version:
Shared ClubMed React UI components
10 lines (9 loc) • 387 B
TypeScript
import { FormControlProps } from './FormControl';
export interface FilterProps<Value = string> extends FormControlProps<Value> {
/**
* Is it attached to a dropdown?
*/
hasDropdown?: boolean;
onChange?: (name: string, value: Value | null) => void;
}
export declare function Filter<Value = string>(props: FilterProps<Value>): import("react/jsx-runtime").JSX.Element;