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