import React from 'react'; import PropTypes from 'prop-types'; import classnames from 'classnames'; const TableCell = ({ children, className, isTableHead, size, align, style, }) => { const classes = { align: { left: 'text-left', center: 'text-center', right: 'text-right', justify: 'text-justify', }, size: { small: 'flex-0.3', normal: 'flex-1', }, isTableHead: { true: '', false: 'border-r border-custom-violetPale', }, }; return (