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

Made it easier to override TableCell padding

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

View file

@ -1,9 +1,14 @@
import React, {HTMLProps} from 'react';
import clsx from 'clsx';
const TableCell: React.FC<HTMLProps<HTMLTableCellElement>> = ({className, children, ...props}) => {
interface TableCellProps extends HTMLProps<HTMLTableCellElement> {
padding?: boolean;
}
const TableCell: React.FC<TableCellProps> = ({className, children, padding = true, ...props}) => {
const tableCellClasses = clsx(
'!py-3 !pl-0 !pr-6 align-top',
padding ? '!py-3 !pl-0 !pr-6' : '',
'align-top',
props.onClick && 'hover:cursor-pointer',
className
);