bp_wb/frontend/components/base/Spacer.tsx

16 lines
309 B
TypeScript

import React from 'react';
export interface SpacerProps {
height?: number;
width?: number;
}
export const Spacer: React.FC<SpacerProps> = ({ height = 20, width = 0 }) => {
return (
<div
data-testid="spacer"
style={{ height, width, minHeight: height, minWidth: width }}
/>
);
};