File "table.head.js"

Full Path: /home/warrior1/public_html/plugins/elementor/app/assets/js/ui/table/table.head.js
File size: 338 bytes
MIME-type: text/x-java
Charset: utf-8

import { arrayToClassName } from 'elementor-app/utils/utils.js';

export default function TableHead( props ) {
	return (
		<thead className={ arrayToClassName( [ 'eps-table__head', props.className ] ) }>
			{ props.children }
		</thead>
	);
}

TableHead.propTypes = {
	children: PropTypes.any.isRequired,
	className: PropTypes.string,
};