mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-07-31 06:01:24 +00:00
ability to publish apps
This commit is contained in:
@@ -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'
|
||||
}}
|
||||
/>
|
||||
);
|
||||
|
Reference in New Issue
Block a user