@mui/material
Version:
Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.
23 lines • 991 B
TypeScript
import { ComponentsPropsList } from "../../styles/props.js";
export interface Localization {
components?: {
MuiAlert?: {
defaultProps: Pick<ComponentsPropsList['MuiAlert'], 'closeText'>;
} | undefined;
MuiBreadcrumbs?: {
defaultProps: Pick<ComponentsPropsList['MuiBreadcrumbs'], 'expandText'>;
} | undefined;
MuiTablePagination?: {
defaultProps: Pick<ComponentsPropsList['MuiTablePagination'], 'labelRowsPerPage' | 'labelDisplayedRows' | 'getItemAriaLabel'>;
} | undefined;
MuiRating?: {
defaultProps: Pick<ComponentsPropsList['MuiRating'], 'emptyLabelText' | 'getLabelText'>;
} | undefined;
MuiAutocomplete?: {
defaultProps: Pick<ComponentsPropsList['MuiAutocomplete'], 'clearText' | 'closeText' | 'loadingText' | 'noOptionsText' | 'openText'>;
} | undefined;
MuiPagination?: {
defaultProps: Pick<ComponentsPropsList['MuiPagination'], 'aria-label' | 'getItemAriaLabel'>;
} | undefined;
} | undefined;
}