BackdropUnstyled API
Documentação da API para o componente React BackdropUnstyled . Aprenda sobre as propriedades disponíveis e a API CSS.
Importação
import BackdropUnstyled from '@mui/core/BackdropUnstyled';
// ou
import { BackdropUnstyled } from '@mui/core';
Propriedades
Props of the nativo component are also available.
Nome | Tipo | Padrão | Descrição |
---|---|---|---|
children | node | O conteúdo do componente. | |
classes | object | Sobrescreve ou extende os estilos aplicados para o componente. Veja a API CSS abaixo para maiores detalhes. | |
component | elementType | The component used for the root node. Either a string to use a HTML element or a component. | |
components | { Root?: elementType } | {} | The components used for each slot inside the Backdrop. Either a string to use a HTML element or a component. |
componentsProps | object | {} | The props used for each slot inside the Backdrop. |
invisible | bool | false | If true , the backdrop is invisible. It can be used when rendering a popover or a custom select component. |
O
ref
é encaminhado para o elemento raiz.CSS
Nome da regra | Classe global | Descrição |
---|---|---|
root | .MuiBackdrop-root | Estilos aplicados ao elemento raiz. |
invisible | .MuiBackdrop-invisible | Estilos aplicados para o elemento raiz se invisible={true} . |
Você pode sobrescrever o estilo do componente usando uma dessas opções de customização:
- With a global class name.
- With a rule name as part of the component's
styleOverrides
property in a custom theme.