(atFirstColumn?: boolean)
| 19 | * @returns cell horizontal padding |
| 20 | */ |
| 21 | export const getCellHorizontalPadding = (atFirstColumn?: boolean) => |
| 22 | atFirstColumn ? 42 : 22; |
| 23 | |
| 24 | export type BlankCell = CustomCell<{ kind: "blank-cell" }>; |
| 25 |
no outgoing calls
no test coverage detected