Skip to content

Commit 5d31e55

Browse files
Merge pull request #2243 from bluewave-labs/ks-027-Sep-29-figma-icons-2047
Ks 027 sep 29 figma icons 2047
2 parents 52f6e94 + 921700d commit 5d31e55

16 files changed

Lines changed: 50 additions & 26 deletions

File tree

Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 13 additions & 0 deletions
Loading

Clients/src/presentation/components/Alert/AlertBody.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// AlertBody.tsx
22
import React, { useState } from "react";
33
import { Box, IconButton, Typography } from "@mui/material";
4-
import ContentCopyIcon from "@mui/icons-material/ContentCopy";
4+
import {ReactComponent as ContentCopyIcon} from "../../assets/icons/contentCopy.svg";
55

66
interface AlertBodyProps {
77
body: string;
@@ -61,7 +61,7 @@ const AlertBody: React.FC<AlertBodyProps> = ({ body, textColor }) => {
6161
</Typography>
6262
) : (
6363
<ContentCopyIcon
64-
sx={{ fontSize: "13px", color: textColor }}
64+
style={{ width: "13px", height:"13px" , color: textColor }}
6565
/>
6666
)}
6767
</Box>

Clients/src/presentation/components/Helpers/Guider/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Link, Stack, Tooltip, Typography } from "@mui/material";
2-
import QuestionMarkIcon from "@mui/icons-material/QuestionMark";
2+
import {ReactComponent as QuestionMarkIcon} from "../../../assets/icons/questionMark.svg";
33
import { GuiderStyler } from "./style";
44

55
const Guider = ({

Clients/src/presentation/components/RiskVisualization/RiskCategories.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@ import {
99
Button,
1010
Collapse,
1111
} from "@mui/material";
12-
import {
13-
ExpandMore as ExpandMoreIcon,
14-
ExpandLess as ExpandLessIcon,
15-
} from "@mui/icons-material";
12+
import { ReactComponent as ExpandLessIcon } from "../../assets/icons/expand-up.svg";
13+
import { ReactComponent as ExpandMoreIcon } from "../../assets/icons/expand-down.svg";
1614
import { ProjectRisk } from "../../../domain/types/ProjectRisk";
1715
import { getAllUsers } from "../../../application/repository/user.repository";
1816

@@ -248,7 +246,7 @@ const RiskCategories: React.FC<RiskCategoriesProps> = ({
248246
</Typography>
249247
</Box>
250248

251-
{isExpanded ? <ExpandLessIcon sx={{ color: '#6B7280' }} /> : <ExpandMoreIcon sx={{ color: '#6B7280' }} />}
249+
{isExpanded ? <ExpandLessIcon style={{ color: '#6B7280' }} /> : <ExpandMoreIcon style={{ color: '#6B7280' }} />}
252250
</Box>
253251

254252
<Stack direction="row" spacing={1} flexWrap="wrap" useFlexGap>

Clients/src/presentation/components/RiskVisualization/RiskFilters.tsx

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ import {
99
Collapse,
1010
IconButton,
1111
} from "@mui/material";
12-
import {
13-
FilterList as FilterIcon,
14-
Clear as ClearIcon,
15-
ExpandMore as ExpandMoreIcon,
16-
ExpandLess as ExpandLessIcon,
17-
} from "@mui/icons-material";
12+
import { ReactComponent as FilterIcon } from "../../assets/icons/filter.svg";
13+
import { ReactComponent as ClearIcon } from "../../assets/icons/clear.svg";
14+
import { ReactComponent as ExpandMoreIcon } from "../../assets/icons/expand-down.svg";
15+
import { ReactComponent as ExpandLessIcon } from "../../assets/icons/expand-up.svg";
1816
import { ProjectRisk } from "../../../domain/types/ProjectRisk";
1917
import Select from "../Inputs/Select";
2018
import { getAllUsers } from "../../../application/repository/user.repository";
@@ -307,7 +305,7 @@ const RiskFilters: React.FC<RiskFiltersProps> = ({
307305
onClick={() => handleExpandedChange(!expanded)}
308306
>
309307
<Stack direction="row" alignItems="center" spacing={1}>
310-
<FilterIcon sx={{ color: "#13715B", fontSize: 20 }} />
308+
<FilterIcon style={{ color: "#13715B", height: "20px", width:"20px" }} />
311309
<Typography variant="subtitle2" sx={{ fontWeight: 600, color: "#1A1919" }}>
312310
Filters
313311
</Typography>

0 commit comments

Comments
 (0)