Spacer.tsx
1 import React from 'react'; 2 3 interface ISpacerProps { 4 width?: number | string; 5 height?: number | string; 6 } 7 8 export function Spacer(props: ISpacerProps) { 9 return <div style={{ flexGrow: 1, minWidth: props.width ?? 0, minHeight: props.height ?? 0 }} />; 10 }