import { Card } from '@automattic/components'; import clsx from 'clsx'; import PropTypes from 'prop-types'; const Table = ( { className, compact = false, horizontalScroll = false, header, children, ...props } ) => { const classes = clsx( { table: true, 'is-compact-table': compact, 'is-horizontally-scrollable': horizontalScroll, }, className ); return (
{ header && { header } } { children }
); }; Table.propTypes = { className: PropTypes.string, compact: PropTypes.bool, horizontalScroll: PropTypes.bool, header: PropTypes.node, }; export default Table;