Native Select

Open-state select showing the focused control and the flyout list with one option muted as chosen.

USD · US Dollar

Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.

Import & use
import { Form27 } from "@/components/beste/piece/form27";

<Form27
  label="Default currency"
  value="USD · US Dollar"
  placeholder="Select a currency"
  open={true}
  options={[
    "USD · US Dollar",
    "EUR · Euro",
    "GBP · British Pound",
    "TRY · Turkish Lira"
  ]}
/>