Skip to content

Commit

Permalink
chnage the icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegMoshkovich committed Oct 10, 2023
1 parent a8eac81 commit 2c98c01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Components/TableRow.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default function CustomTableRow({heading, subtext, inputType = 'input', o
<>
{renderInputComponent()}
<IconButton size="small" onClick={handleSubmit}>
<SubmitIcon fontSize="inherit"/>
<SubmitIcon fontSize="inherit" color='primary'/>
</IconButton>
</>
) : (
Expand All @@ -102,7 +102,7 @@ export default function CustomTableRow({heading, subtext, inputType = 'input', o
{value}
</Typography>
<IconButton size="small" onClick={() => setIsEditing(true)}>
<EditIcon fontSize="inherit"/>
<EditIcon fontSize="inherit" color='primary'/>
</IconButton>
</>
)}
Expand Down

0 comments on commit 2c98c01

Please sign in to comment.