import "./Select.scss"; import { Component, For, Show } from "solid-js"; export type SelectOption = { id: string; label: string }; export type SelectValue = string; export type SelectChangeEvent = { value: SelectValue }; export type SelectChangeCallback = (event: SelectChangeEvent) => void; export type SelectProps = { placeholder?: string; options: SelectOption[]; value?: SelectValue; onValueChange: SelectChangeCallback; }; export const Select: Component = (props) => { return (
); };