finished app info

This commit is contained in:
2024-10-20 03:00:25 +03:00
parent 4a026bccc7
commit ba53e83b13
5 changed files with 349 additions and 240 deletions

View File

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