Skip to content

Commit

Permalink
feat(ui): Change infobox icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Hypfer committed Dec 30, 2021
1 parent 388f658 commit a82e1df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/InfoBox.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import {Grid, Paper} from "@mui/material";
import {WarningAmber} from "@mui/icons-material";
import {Announcement} from "@mui/icons-material";

const InfoBox = (props: { boxShadow: number, style?: React.CSSProperties, children: React.ReactNode}): JSX.Element => {

Expand All @@ -17,7 +17,7 @@ const InfoBox = (props: { boxShadow: number, style?: React.CSSProperties, childr
marginRight: "auto"
}}
>
<WarningAmber fontSize={"large"} color={"info"}/>
<Announcement fontSize={"large"} color={"info"}/>
</Grid>
<Grid
item
Expand Down

0 comments on commit a82e1df

Please sign in to comment.