norma-library
Version:
Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.
13 lines (11 loc) • 458 B
text/typescript
import { PaperPropsVariantOverrides, SxProps } from '@mui/material';
import { Theme } from '@emotion/react';
import { MuiPaperBaseProps, PaperVariant } from '../types';
import { OverridableStringUnion } from '@mui/types';
export interface PaperBaseProps extends MuiPaperBaseProps {
sx?: SxProps<Theme>;
elevation?: number;
square?: boolean;
children?: React.ReactNode;
variant?: OverridableStringUnion<PaperVariant, PaperPropsVariantOverrides>;
}