Skip to Content
Sponsor

Select

Select component is a component that allows users pick a value from predefined options. Ideally, it should be used when there are more than 5 options, otherwise you might consider using a radio group instead.

Import#

Usage#

Here's a basic usage of the Select component.

Editable Example

Changing the size of the Select#

TheSelect component cones in three sizes : large (48px), default (40px) and small (32px).

Editable Example

Changing the appearance of the Select#

Just like the input component, Select comes in 3 variants, outline, unstyled , flushed , and filled. Pass the variant prop and set it to either of these values.

Editable Example

Changing the icon in the Select#

As with most Chakra components, you can change the arrow icon used in the select. Simply pass the icon prop.

In case the custom icon size doesn't look right, you can pass the iconSize prop to change it.

Overriding the styles of the Select#

Even though the select comes with predefined styles, you can override pretty much any property. Here we'll override the background color.

Editable Example

Props#

The Select component composes Box so you can pass all Box props, and native Select props in addition to these:

NameTypeDescriptionDefault
colorSchemestring-
cssInterpolation<{}>The emotion's css style object-
errorBorderColorstringThe border color when the select is invalid. Use color keys in `theme.colors` @example errorBorderColor = "red.500"-
focusBorderColorstringThe border color when the select is focused. Use color keys in `theme.colors` @example focusBorderColor = "blue.500"-
iconReact.ReactElementThe icon element to use in the select-
iconColorstringThe color of the icon-
iconSizestringThe size (width and height) of the icon-
isDisabledboolean-
isFullWidthbooleanIf `true`, the select element will span the full width of its parent-
isInvalidbooleanIf `true`, the form control will be invalid. This has 2 side effects: - The `FormLabel` and `FormErrorIcon` will have `data-invalid` set to `true` - The form element (e.g, Input) will have `aria-invalid` set to `true`-
isLoadingbooleanIf `true`, the form control will be in its `loading` state-
isReadOnlybooleanIf `true`, the form control will be readonly-
isRequiredbooleanIf `true`, the form control will required. This has 2 side effects: - The `FormLabel` will show a required indicator - The form element (e.g, Input) will have `aria-requred` set to `true`-
orientation"horizontal" | "vertical"-
rootPropsRootPropsProps to forward to the root `div` element-
sizestring-
styleConfigRecord<string, any>-
variantstring-
Edit this page