From aa4b7640253f8c9270dffc5308ef2bb9e7a621ae Mon Sep 17 00:00:00 2001 From: Bruno Quaresma Date: Fri, 9 May 2025 15:09:03 -0300 Subject: [PATCH] chore: replace MUI icons - 3 (#17733) 1. Replaced TaskAlt with CircleCheckBigIcon in: - Paywall.tsx - PopoverPaywall.tsx 2. Replaced InfoOutlined with InfoIcon in: - ChangeVersionDialog.tsx - WorkspaceNotifications.tsx - Pill.stories.tsx 3. Replaced ErrorOutline/ErrorOutlineIcon with CircleAlertIcon in: - workspace.tsx - WorkspaceStatusBadge.tsx - AppLink.tsx --- site/src/components/Paywall/Paywall.tsx | 6 ++++-- site/src/components/Paywall/PopoverPaywall.tsx | 6 ++++-- site/src/components/Pill/Pill.stories.tsx | 4 ++-- site/src/modules/resources/AppLink/AppLink.tsx | 18 +++++++++++++++--- .../WorkspaceStatusBadge.tsx | 8 ++++---- .../WorkspacePage/ChangeVersionDialog.tsx | 7 +++++-- .../WorkspaceNotifications.tsx | 4 ++-- site/src/utils/workspace.tsx | 9 ++++----- 8 files changed, 40 insertions(+), 22 deletions(-) diff --git a/site/src/components/Paywall/Paywall.tsx b/site/src/components/Paywall/Paywall.tsx index 899d23ca4a..56c0e9cc39 100644 --- a/site/src/components/Paywall/Paywall.tsx +++ b/site/src/components/Paywall/Paywall.tsx @@ -1,9 +1,9 @@ import type { Interpolation, Theme } from "@emotion/react"; -import TaskAltIcon from "@mui/icons-material/TaskAlt"; import Link from "@mui/material/Link"; import { PremiumBadge } from "components/Badges/Badges"; import { Button } from "components/Button/Button"; import { Stack } from "components/Stack/Stack"; +import { CircleCheckBigIcon } from "lucide-react"; import type { FC, ReactNode } from "react"; export interface PaywallProps { @@ -73,7 +73,9 @@ export const Paywall: FC = ({ const FeatureIcon: FC = () => { return ( -