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