Page MenuHomec4science

variants.d.ts
No OneTemporary

File Metadata

Created
Sun, Jan 26, 21:30

variants.d.ts

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 }>;
}>;
};

Event Timeline