feat(home): give star icon yellow color to make it consistent

Signed-off-by: djamaile <rdjamaile@gmail.com>
This commit is contained in:
djamaile
2022-04-12 13:51:38 +02:00
parent b76e77546d
commit 2b733d9d39
3 changed files with 10 additions and 2 deletions
@@ -38,7 +38,6 @@ import React from 'react';
*
* @public
*/
export const Content = () => {
const catalogEntityRoute = useRouteRef(entityRouteRef);
const { starredEntities, toggleStarredEntity } = useStarredEntities();
@@ -64,7 +63,7 @@ export const Content = () => {
aria-label="unstar"
onClick={() => toggleStarredEntity(entity)}
>
<StarIcon />
<StarIcon style={{ color: '#f3ba37' }} />
</IconButton>
</Tooltip>
</ListItemSecondaryAction>