@mui/material
Version:
React components that implement Google's Material Design.
11 lines (9 loc) • 315 B
TypeScript
import { Interpolation } from '@mui/system';
import { Theme } from './createTheme';
import { ComponentsPropsList } from './props';
export type ComponentsVariants = {
[Name in keyof ComponentsPropsList]?: Array<{
props: Partial<ComponentsPropsList[Name]>;
style: Interpolation<{ theme: Theme }>;
}>;
};