feat: Add Spacer component

This commit is contained in:
jhynsoo 2023-10-25 18:19:23 +09:00
parent fc6d02bef7
commit 148b59a082

View File

@ -0,0 +1,15 @@
function Spacer({ width = 0, height = 0 }) {
return (
<div
style={{
display: 'block',
width,
height,
minWidth: width,
minHeight: height,
}}
></div>
);
}
export default Spacer;