import React from 'react'; import PropTypes from 'prop-types'; import classnames from 'classnames'; const TableCell = ({ children, className, colSpan, // ignored because we don't wan't to expose this prop // eslint-disable-next-line react/prop-types cellsNum, isTableHead, align, style, }) => { const classes = { align: { left: 'text-left', center: 'text-center', right: 'text-right', justify: 'text-justify', }, isTableHead: { true: '', false: 'border-r border-secondary-light', }, }; return (