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