Skip to content

Commit

Permalink
fix(table): remove default cursor for cell
Browse files Browse the repository at this point in the history
  • Loading branch information
baltaazr committed Apr 9, 2021
1 parent d2660e3 commit 20fd6d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fiber-ui",
"version": "1.0.23",
"version": "1.0.24",
"description": "A React UI Component library",
"author": "bottable",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/Table/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const TableCellBody = styled.td<CellProps>`
padding: ${({ theme }) => `${theme.paddings.sm} ${theme.paddings.md}`};
border: ${({ theme }) => theme.border.md};
border-color: ${({ theme }) => theme.colors.gray4};
cursor: ${({ clickable }) => (clickable ? 'pointer' : 'default')};
cursor: ${({ clickable }) => (clickable ? 'pointer' : null)};
overflow-wrap: break-word;
${({ ellipsis }) => (ellipsis ? ellipsisStyle : null)};
Expand Down

0 comments on commit 20fd6d0

Please sign in to comment.