// @flow import * as React from 'react'; import classNames from 'classnames'; type Props = { children: React.Node, className?: string, isFixedWidth?: boolean, }; const TableCell = ({ children, className = '', isFixedWidth = false, ...rest }: Props) => (