From 851a61ca3126269d118f6a7431c0a11ee420d1be Mon Sep 17 00:00:00 2001 From: rcourtman Date: Fri, 24 Oct 2025 11:42:01 +0000 Subject: [PATCH] revert: restore original Docker logo icon Revert back to the Simple Icons Docker logo. The user wanted to keep the original Docker whale logo icon, not replace it with the Container icon. --- frontend-modern/src/components/icons/DockerIcon.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/frontend-modern/src/components/icons/DockerIcon.tsx b/frontend-modern/src/components/icons/DockerIcon.tsx index 627d5e5..cadd9a8 100644 --- a/frontend-modern/src/components/icons/DockerIcon.tsx +++ b/frontend-modern/src/components/icons/DockerIcon.tsx @@ -1,5 +1,5 @@ import type { Component } from 'solid-js'; -import Container from 'lucide-solid/icons/container'; +import { siDocker } from 'simple-icons'; interface DockerIconProps { class?: string; @@ -7,5 +7,14 @@ interface DockerIconProps { } export const DockerIcon: Component = (props) => ( - + + {props.title ?? 'Docker'} + + );