11 lines
262 B
TypeScript
11 lines
262 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 style={{ height, width, minHeight: height, minWidth: width }} />;
|
|
};
|
|
|