File size: 812 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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;