Action menu
A fixed label plus a leading icon. Selecting an option fires onChange (e.g. to kick off an export) without changing the trigger. Open it and hover or arrow through — the active option lights up in the accent.
<Dropdown
label="Export as"
icon={<DownloadIcon />}
aria-label="Export as"
options={[
{ label: 'Export as .pdf', value: 'pdf' },
{ label: 'Export as .csv', value: 'csv' },
{ label: 'Export as .xlsx', value: 'xlsx' },
]}
onChange={(format) => exportFile(format)}
/>