ability to publish apps

This commit is contained in:
2024-10-19 04:54:59 +03:00
parent 020366477a
commit 9685a40e6a
16 changed files with 1102 additions and 255 deletions

View File

@@ -1,12 +1,13 @@
import { Box } from "@mui/material";
export const Spacer = ({ height }: any) => {
export const Spacer = ({ height, width }: any) => {
return (
<Box
sx={{
height: height,
height: height ? height : '0px',
display: 'flex',
flexShrink: 0
flexShrink: 0,
width: width ? width : '0px'
}}
/>
);