import * as React from 'react'; import { FunctionComponent } from 'react'; const Space: FunctionComponent<{ width?: string, height?: string }> = ({ width, height }) => { return (
); } export default Space;