import React, { FC } from 'react' import { Paper as MuiPaper, SxProps } from '@mui/material' interface PaperProps { sx?: SxProps, square?: boolean, elevation?: number, variant?: string, className?: string, children?: React.ReactNode } export const Paper: FC = (props) => { // == Props ================================ const { children, variant, sx, square = false, elevation = 0, className = '' } = props // == Hooks ================================ // == Functions ============================ // == Actions ============================== // == Template ============================= return ( {children} ) }