import cx from "clsx"; import { registerComponent } from "../../../../registries/components"; import { getEventValue } from "../../../../utils/getEventValue"; import { cleanFormControlProps } from "../../form-control/FormControl"; import { AllSelectProps, SelectOptionBaseProps } from "../Select.interface"; function Option({ value, label, ...props }: SelectOptionBaseProps) { return ( ); } export function HTMLSelect({ name, id = name, size, value, multiple, onChange, options, placeholder, ...props }: AllSelectProps) { const hasGroup = !!options[0].options; return ( ); } registerComponent("Select.html5", HTMLSelect);