import classNames from 'classnames'; import { IPaperProps, } from './IPaperProps'; import MuiPaper from '@material-ui/core/Paper' import * as React from 'react'; export const Paper: React.FunctionComponent = ({ children, className, ...props }) => ( {children} );