From 9ba1e7eb4442fd34be666d22aebe5e2899fffd85 Mon Sep 17 00:00:00 2001 From: Allen Houchins <32207388+allenhouchins@users.noreply.github.com> Date: Thu, 9 Apr 2026 11:51:32 -0500 Subject: [PATCH] Remove AdobeAcrobat icon and use AcrobatReader (#43321) Delete AdobeAcrobat.tsx (embedded PNG icon) and update icons index to remove its import and map 'adobe acrobat' to the existing AcrobatReader component, consolidating Acrobat icon usage. **Related issue:** Resolves #43287 --- .../SoftwarePage/components/icons/AdobeAcrobat.tsx | 14 -------------- .../pages/SoftwarePage/components/icons/index.ts | 3 +-- 2 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 frontend/pages/SoftwarePage/components/icons/AdobeAcrobat.tsx diff --git a/frontend/pages/SoftwarePage/components/icons/AdobeAcrobat.tsx b/frontend/pages/SoftwarePage/components/icons/AdobeAcrobat.tsx deleted file mode 100644 index 2fd5786c0a..0000000000 --- a/frontend/pages/SoftwarePage/components/icons/AdobeAcrobat.tsx +++ /dev/null @@ -1,14 +0,0 @@ -import * as React from "react"; - -import type { SVGProps } from "react"; - -const AdobeAcrobat = (props: SVGProps) => ( - - - -); -export default AdobeAcrobat; diff --git a/frontend/pages/SoftwarePage/components/icons/index.ts b/frontend/pages/SoftwarePage/components/icons/index.ts index b59776dc75..b374f3a80e 100644 --- a/frontend/pages/SoftwarePage/components/icons/index.ts +++ b/frontend/pages/SoftwarePage/components/icons/index.ts @@ -27,7 +27,6 @@ import SequelAce from "./SequelAce"; import SevenZip from "./7Zip"; import Abstract from "./Abstract"; import AcrobatReader from "./AcrobatReader"; -import AdobeAcrobat from "./AdobeAcrobat"; import AdobeDigitalEditions45 from "./AdobeDigitalEditions45"; import AdobeDngConverter from "./AdobeDngConverter"; import Aircall from "./Aircall"; @@ -261,7 +260,7 @@ export const SOFTWARE_NAME_TO_ICON_MAP = { "8x8 work": EightXEightWork, "1password": OnePassword, abstract: Abstract, - "adobe acrobat": AdobeAcrobat, + "adobe acrobat": AcrobatReader, "adobe acrobat reader": AcrobatReader, "adobe creative cloud": CreativeCloud, "adobe digital editions": AdobeDigitalEditions45,