Skip to content

Commit

Permalink
[CHK-1673] Update drawer (#228)
Browse files Browse the repository at this point in the history
* [CHK-1673] fix: side drawer icons

* [CHK-1673] fix: cart icon
  • Loading branch information
MarcoAGreco authored Jul 13, 2023
1 parent c1e1177 commit ea53d95
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/commons/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* eslint-disable sonarjs/cognitive-complexity */
import InfoOutlinedIcon from "@mui/icons-material/InfoOutlined";
import { Box, Grid, Typography } from "@mui/material";
import React from "react";
import { useLocation } from "react-router-dom";
import { HelpOutlineOutlined, ShoppingCart } from "@mui/icons-material";
import pagopaLogo from "../../assets/images/pagopa-logo.svg";
import {
Cart,
Expand Down Expand Up @@ -104,7 +104,11 @@ export default function Header() {
onClick={() => toggleDrawer(true)}
>
{moneyFormat(amountToShow())}
<InfoOutlinedIcon color="primary" sx={{ ml: 1 }} />
<ShoppingCart
color="primary"
style={{ width: "15px", height: "auto" }}
/>
<HelpOutlineOutlined color="primary" sx={{ ml: 2 }} />
</Typography>
</Grid>
<DrawerDetail
Expand Down

0 comments on commit ea53d95

Please sign in to comment.