/
githubmirror
/
material-ui
Обзор
Документация
Войти
/
githubmirror
/
material-ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/mui-material/src/ListSubheader/ListSubheader.d.ts
70 строк
2 KB
Siriwat K
[internal] Prepare libraries for v9 stable release (#48206)
07 апр 2026, 11:54
Не верифицирован
07 апр 2026, 11:54
e4de3e2
Код
Авторство
О чём код?
import * as React from 'react'; import { SxProps } from '@mui/system'; import { Theme } from '../styles'; import { OverridableComponent, OverrideProps } from '../OverridableComponent'; import { ListSubheaderClasses } from './listSubheaderClasses'; export interface ListSubheaderOwnProps { /** * The content of the component. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ classes?: Partial<ListSubheaderClasses> | undefined; /** * The color of the component. It supports those theme colors that make sense for this component. * @default 'default' */ color?: 'default' | 'primary' | 'inherit' | undefined; /** * If `true`, the List Subheader will not have gutters. * @default false */ disableGutters?: boolean | undefined; /** * If `true`, the List Subheader will not stick to the top during scroll. * @default false */ disableSticky?: boolean | undefined; /** * If `true`, the List Subheader is indented. * @default false */ inset?: boolean | undefined; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps<Theme> | undefined; } export interface ListSubheaderTypeMap< AdditionalProps = {}, RootComponent extends React.ElementType = 'li', > { props: AdditionalProps & ListSubheaderOwnProps; defaultComponent: RootComponent; } /** * * Demos: * * - [Lists](https://mui.com/material-ui/react-list/) * - [Menubar](https://mui.com/material-ui/react-menubar/) * * API: * * - [ListSubheader API](https://mui.com/material-ui/api/list-subheader/) */ declare const ListSubheader: OverridableComponent<ListSubheaderTypeMap>; export type ListSubheaderProps< RootComponent extends React.ElementType = ListSubheaderTypeMap['defaultComponent'], AdditionalProps = {}, > = OverrideProps<ListSubheaderTypeMap<AdditionalProps, RootComponent>, RootComponent> & { component?: React.ElementType | undefined; }; export default ListSubheader;