Qortal-Hub/src/common/Spacer.tsx
2025-04-18 09:32:07 +02:00

16 lines
309 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 || {}),
}}
/>
);
};