Qortal-Hub/src/common/Spacer.tsx
2024-10-20 03:00:25 +03:00

15 lines
332 B
TypeScript

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