@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 • 907 B
TypeScript
import { ComponentsPropsList } from "../../styles/props.js";
export interface Localization {
components?: {
MuiAlert?: {
defaultProps: Pick<ComponentsPropsList['MuiAlert'], 'closeText'>;
};
MuiBreadcrumbs?: {
defaultProps: Pick<ComponentsPropsList['MuiBreadcrumbs'], 'expandText'>;
};
MuiTablePagination?: {
defaultProps: Pick<ComponentsPropsList['MuiTablePagination'], 'labelRowsPerPage' | 'labelDisplayedRows' | 'getItemAriaLabel'>;
};
MuiRating?: {
defaultProps: Pick<ComponentsPropsList['MuiRating'], 'emptyLabelText' | 'getLabelText'>;
};
MuiAutocomplete?: {
defaultProps: Pick<ComponentsPropsList['MuiAutocomplete'], 'clearText' | 'closeText' | 'loadingText' | 'noOptionsText' | 'openText'>;
};
MuiPagination?: {
defaultProps: Pick<ComponentsPropsList['MuiPagination'], 'aria-label' | 'getItemAriaLabel'>;
};
};
}