blob: 5e2604f90b0b77ab425123f6677986af42043ee9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import React from 'react';
interface Props {
variant?: 'elevation' | 'outlined';
}
const style = {
elevation: '',
outlined: 'bg-gray-50 border border-gray-300',
};
const Paper: React.FC<Props> = ({ variant = 'elevation', children }) => {
return (
<div className={`p-5 m-5 bg-white rounded-md shadow ${style[variant]}`}>
{children}
</div>
);
};
export default Paper;
|