UNPKG

@mui/material

Version:

Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

70 lines (63 loc) 1.94 kB
import * as React from 'react'; import { SxProps } from '@mui/system'; import { Theme } from '..'; import { OverridableComponent, OverridableTypeMap, OverrideProps } from '../OverridableComponent'; import { ListClasses } from './listClasses'; export interface ListTypeMap<P = {}, D extends React.ElementType = 'ul'> { props: P & { /** * The content of the component. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ classes?: Partial<ListClasses>; /** * If `true`, compact vertical padding designed for keyboard and mouse input is used for * the list and list items. * The prop is available to descendant components as the `dense` context. * @default false */ dense?: boolean; /** * If `true`, vertical padding is removed from the list. * @default false */ disablePadding?: boolean; /** * The content of the subheader, normally `ListSubheader`. */ subheader?: React.ReactNode; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps<Theme>; }; defaultComponent: D; } /** * utility to create component types that inherit props from List. */ export interface ExtendListTypeMap<M extends OverridableTypeMap> { props: M['props'] & ListTypeMap['props']; defaultComponent: M['defaultComponent']; } export type ExtendList<M extends OverridableTypeMap> = OverridableComponent<ExtendListTypeMap<M>>; /** * * Demos: * * - [Lists](https://mui.com/components/lists/) * - [Transfer List](https://mui.com/components/transfer-list/) * * API: * * - [List API](https://mui.com/api/list/) */ declare const List: ExtendList<ListTypeMap>; export type ListProps< D extends React.ElementType = ListTypeMap['defaultComponent'], P = {}, > = OverrideProps<ListTypeMap<P, D>, D>; export default List;