import * as React from 'react'; import MuiPaper, { PaperProps } from '@mui/material/Paper'; import { styled } from '@mui/material/styles'; interface ExtraPaperProps { background: 'light' | 'main' | 'dark'; padding?: boolean; } const PaperRoot = styled(MuiPaper, { shouldForwardProp: (prop) => prop !== 'background' && prop !== 'padding', })(({ theme, background, padding }) => ({ backgroundColor: theme.palette.secondary[background], ...(padding && { padding: theme.spacing(1), }), })); export default function Paper(props: PaperProps & ExtraPaperProps) { const { background, classes, className, padding = false, ...other } = props; return ( ); }