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:
parent
fa0b1c607b
commit
e7b1d7afa9
1 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue