mirror of
https://github.com/elementor/hello-theme.git
synced 2026-03-03 12:56:14 +08:00
9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
import Paper from '@elementor/ui/Paper';
|
|
|
|
export const BaseAdminPaper = ( { children, sx = { px: 4, py: 3 } } ) => {
|
|
return (
|
|
<Paper elevation={ 1 } sx={ sx }>
|
|
{ children }
|
|
</Paper>
|
|
);
|
|
};
|