0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Added colspan support to TableHead

refs https://github.com/TryGhost/Product/issues/4024
This commit is contained in:
Djordje Vlaisavljevic 2023-10-12 13:39:22 +01:00
parent e7b1d7afa9
commit 3bc6d331e9

View file

@ -2,7 +2,7 @@ import Heading from './Heading';
import React, {HTMLProps} from 'react';
import clsx from 'clsx';
const TableHead: React.FC<HTMLProps<HTMLTableCellElement>> = ({className, children, ...props}) => {
const TableHead: React.FC<HTMLProps<HTMLTableCellElement>> = ({className, children, colSpan, ...props}) => {
const tableCellClasses = clsx(
'!py-2 !pl-0 !pr-6 text-left align-top',
props.onClick && 'hover:cursor-pointer',
@ -10,7 +10,7 @@ const TableHead: React.FC<HTMLProps<HTMLTableCellElement>> = ({className, childr
);
return (
<th className={tableCellClasses} {...props}>
<th className={tableCellClasses} colSpan={colSpan} {...props}>
<Heading className='whitespace-nowrap' level={6}>{children}</Heading>
</th>
);