From 109fb7fb94c0dc026bb1934bf3e66d137b2d4886 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=A8=20Audrey=20=E2=9C=A8?= Date: Tue, 8 Jul 2025 09:54:55 -0400 Subject: [PATCH] [PM-23531] rename `SendCreatedIcon` to `ActiveSendIcon` (#15528) --- .../popup/send-v2/send-created/send-created.component.ts | 4 ++-- .../src/icons/{send-created.icon.ts => active-send.icon.ts} | 2 +- libs/tools/send/send-ui/src/icons/index.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename libs/tools/send/send-ui/src/icons/{send-created.icon.ts => active-send.icon.ts} (98%) diff --git a/apps/browser/src/tools/popup/send-v2/send-created/send-created.component.ts b/apps/browser/src/tools/popup/send-v2/send-created/send-created.component.ts index 89d1ad5e809..dd9e95b64a1 100644 --- a/apps/browser/src/tools/popup/send-v2/send-created/send-created.component.ts +++ b/apps/browser/src/tools/popup/send-v2/send-created/send-created.component.ts @@ -13,7 +13,7 @@ import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/pl import { SendView } from "@bitwarden/common/tools/send/models/view/send.view"; import { SendService } from "@bitwarden/common/tools/send/services/send.service.abstraction"; import { ButtonModule, IconModule, ToastService } from "@bitwarden/components"; -import { SendCreatedIcon } from "@bitwarden/send-ui"; +import { ActiveSendIcon } from "@bitwarden/send-ui"; import { PopOutComponent } from "../../../../platform/popup/components/pop-out.component"; import { PopupFooterComponent } from "../../../../platform/popup/layout/popup-footer.component"; @@ -36,7 +36,7 @@ import { PopupPageComponent } from "../../../../platform/popup/layout/popup-page ], }) export class SendCreatedComponent { - protected sendCreatedIcon = SendCreatedIcon; + protected sendCreatedIcon = ActiveSendIcon; protected send: SendView; protected daysAvailable = 0; protected hoursAvailable = 0; diff --git a/libs/tools/send/send-ui/src/icons/send-created.icon.ts b/libs/tools/send/send-ui/src/icons/active-send.icon.ts similarity index 98% rename from libs/tools/send/send-ui/src/icons/send-created.icon.ts rename to libs/tools/send/send-ui/src/icons/active-send.icon.ts index 099baebb9ad..da5932bf95c 100644 --- a/libs/tools/send/send-ui/src/icons/send-created.icon.ts +++ b/libs/tools/send/send-ui/src/icons/active-send.icon.ts @@ -1,6 +1,6 @@ import { svgIcon } from "@bitwarden/components"; -export const SendCreatedIcon = svgIcon` +export const ActiveSendIcon = svgIcon` diff --git a/libs/tools/send/send-ui/src/icons/index.ts b/libs/tools/send/send-ui/src/icons/index.ts index 4460070f43b..57636daadcf 100644 --- a/libs/tools/send/send-ui/src/icons/index.ts +++ b/libs/tools/send/send-ui/src/icons/index.ts @@ -1,3 +1,3 @@ export { ExpiredSendIcon } from "./expired-send.icon"; export { NoSendsIcon } from "./no-send.icon"; -export { SendCreatedIcon } from "./send-created.icon"; +export { ActiveSendIcon } from "./active-send.icon";