Select / Combobox generator
Status pickers, record type selectors and picklist-backed fields all use lightning-combobox. Style the border, focus ring and radius to match the rest of your form.
Your changes autosave in this browser, and the link above reproduces this exact configuration for anyone you send it to.
Live preview
Generated code
<template>
<lightning-combobox
label="Lead Status"
value={value}
options={options}
class="studio-select"
onchange={handleChange}
></lightning-combobox>
</template>Design tips for select / comboboxes
- Match focus-ring color across every field in a form — inconsistent focus colors read as unpolished.
- Keep option lists under ~10 items before considering a searchable combobox or lookup instead.
- Order options logically (alphabetical or by process stage), not by whichever order they were created.
Related components
Components developers commonly compare against or pair with Select / Combobox.