UNPKG

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.

12 lines (11 loc) 467 B
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>; }