Pular para o conteúdo

OptionGroupUnstyled API

Documentação da API para o componente React OptionGroupUnstyled . Aprenda sobre as propriedades disponíveis e a API CSS.

Importação

import OptionGroupUnstyled from '@mui/base/OptionGroupUnstyled';
// ou
import { OptionGroupUnstyled } from '@mui/base';
Você pode aprender sobre a diferença lendo este guia sobre como minimizar o tamanho do pacote.

An unstyled option group to be used within a SelectUnstyled.

Propriedades

Propriedades do componente nativo também estão disponíveis.

NomeTipoPadrãoDescrição
componentelementType
The component used for the Root slot. Either a string to use a HTML element or a component. This is equivalent to components.Root. If both are provided, the component is used.
components{ Label?: elementType, List?: elementType, Root?: elementType }{}
The components used for each slot inside the OptionGroupUnstyled. Either a string to use a HTML element or a component.
componentsProps{ label?: func
| object, list?: func
| object, root?: func
| object }
{}
The props used for each slot inside the Input.
disabledboolfalse
If true all the options in the group will be disabled.
labelnode
The human-readable description of the group.

O ref é encaminhado para o elemento raiz.

Demonstrações