mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-04-21 18:37:51 +00:00
15 lines
332 B
TypeScript
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 || {})
|
|
}}
|
|
/>
|
|
);
|
|
}; |