// @flow import React from 'react'; import { Table, TBody, TR, TD } from 'oy-vey'; const EmptySpace = ({ height }: { height?: number }) => { height = height || 16; const style = { lineHeight: `${height}px`, fontSize: '1px', msoLineHeightRule: 'exactly', }; return (
); }; export default EmptySpace;