feat(ux): update cell border color and created test file for table rendering (#17798)

This commit is contained in:
Dev Randalpura
2026-01-28 11:55:01 -08:00
committed by GitHub
parent 519a0e617a
commit 065e69a12b
3 changed files with 51 additions and 3 deletions
+5 -3
View File
@@ -124,14 +124,16 @@ export const TableRenderer: React.FC<TableRendererProps> = ({
return (
<Text color={theme.text.primary}>
{' '}
<Text color={theme.border.default}></Text>{' '}
{renderedCells.map((cell, index) => (
<React.Fragment key={index}>
{cell}
{index < renderedCells.length - 1 ? ' │ ' : ''}
{index < renderedCells.length - 1 && (
<Text color={theme.border.default}>{' │ '}</Text>
)}
</React.Fragment>
))}{' '}
<Text color={theme.border.default}></Text>
</Text>
);
};