Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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 (
<Card className={ classes }>
<div className="table__wrapper-shadow">
<div className="table__wrapper">
<table { ...props }>
{ header && <thead>{ header }</thead> }
<tbody>{ children }</tbody>
</table>
</div>
</div>
</Card>
);
};
Table.propTypes = {
className: PropTypes.string,
compact: PropTypes.bool,
horizontalScroll: PropTypes.bool,
header: PropTypes.node,
};
export default Table;