components / select

select.

headless dropdown with palette swatch support.

installation
bunx @justin06lee/chrome@latest add select
usage
Controlled
const [value, setValue] = useState("a");
<Select
value={value}
onChange={setValue}
options={[
{ value: "a", label: "alpha" },
{ value: "b", label: "beta" },
]}
/>