add caret to combobox

This commit is contained in:
Chris Kruining 2025-01-07 07:31:05 +01:00
parent 1ae0e14e42
commit 7f71f83a59
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
3 changed files with 26 additions and 0 deletions

View file

@ -16,6 +16,7 @@ export const LocalePicker: Component<LocalePickerProps> = (props) => {
value={locale()}
setValue={setLocale}
values={locales}
showCaret={false}
>
{(locale, { flag, label }) => <Dynamic component={flag} lang={locale} aria-label={label} class={css.flag} />}
</ComboBox>