Skip to content

Commit 70bbf0d

Browse files
committed
[chore] : 아이콘 변경
1 parent 195ce15 commit 70bbf0d

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

packages/view/src/components/FolderActivityFlow/FolderActivityFlow.tsx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Breadcrumbs from "@mui/material/Breadcrumbs";
55
import Link from "@mui/material/Link";
66
import Typography from "@mui/material/Typography";
77
import NavigateNextIcon from "@mui/icons-material/NavigateNext";
8-
import AutoAwesomeIcon from "@mui/icons-material/AutoAwesome";
8+
import WorkspacePremiumRoundedIcon from "@mui/icons-material/WorkspacePremiumRounded";
99

1010
import { useDataStore } from "store";
1111

@@ -92,8 +92,7 @@ const FolderActivityFlow = () => {
9292

9393
const firstReleaseLabel = resolvedTags[0] || "...";
9494
const lastReleaseLabel = resolvedTags[resolvedTags.length - 1] || firstReleaseLabel;
95-
const rangeLabel =
96-
resolvedTags.length <= 1 ? firstReleaseLabel : `${firstReleaseLabel} to ${lastReleaseLabel}`;
95+
const rangeLabel = resolvedTags.length <= 1 ? firstReleaseLabel : `${firstReleaseLabel} to ${lastReleaseLabel}`;
9796

9897
return {
9998
topContributorName: mostActiveContributor || null,
@@ -183,10 +182,8 @@ const FolderActivityFlow = () => {
183182
</Breadcrumbs>
184183

185184
<div className="folder-activity-flow__title">
186-
<AutoAwesomeIcon className="folder-activity-flow__title-icon" />
187-
<span className="folder-activity-flow__title-text">
188-
Top contributor is {topContributorLabel}
189-
</span>
185+
<WorkspacePremiumRoundedIcon className="folder-activity-flow__title-icon" />
186+
<span className="folder-activity-flow__title-text">Top contributor is {topContributorLabel}</span>
190187
</div>
191188

192189
<div className="folder-activity-flow__subtitle">{releaseRangeLabel}</div>

0 commit comments

Comments
 (0)