@icoms-detection/ui
Version:
This is the OFFICIAL UI library created by Icoms Detection to design their apps.
10 lines (9 loc) • 368 B
TypeScript
import { ChangeEvent, ComponentProps, FC } from "react";
export interface SelectProps extends ComponentProps<"div"> {
/** Provide a text content for the card */
defaultOption?: string;
isSelected: string | number;
options: any[];
onSelectChange: (e: ChangeEvent<HTMLSelectElement>) => void;
}
export declare const Select: FC<SelectProps>;