mui-simple
Version:
Override mui components to simplify usage
17 lines • 454 B
TypeScript
import type { ComponentType } from 'react';
interface PaperStylesProps {
width: string | number;
height: string | number;
muiColor: string;
square: boolean;
variant: string;
customColor: string;
textColor: string;
imageSrc: string;
imageOpacity: number;
elevation: number;
imageLayout: string;
}
export declare const Paper: ComponentType<PaperStylesProps>;
export {};
//# sourceMappingURL=Paper.styled.d.ts.map