import React from 'react'; interface Props { variant: 'elevation' | 'outlined' } const style = { elevation: 'shadow', outlined: 'border-black border-2', }; const Paper: React.FC = ({ variant = 'elevation', children }) => { return (
{children}
); }; export default Paper;