import React from 'react';
import { Paper as MuiPaper } from '@mui/material';
import { PaperBaseProps } from '../interfaces';
import { styled } from '@mui/material/styles';

const PaperStyled = styled(MuiPaper)({});

export const Paper = ({ children, ...props }: PaperBaseProps & {}) => {
  return (
    <PaperStyled {...props}>{children}</PaperStyled>
  );
};
