mirror of
https://gh.wpcy.net/https://github.com/elementor/hello-theme.git
synced 2026-04-27 12:12:21 +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>
|
|
);
|
|
};
|