This commit is contained in:
null 2026-05-26 17:42:02 -05:00
parent 8af11125cc
commit 0302e83b08
6 changed files with 9 additions and 22 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
frontend/src/app/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

View File

@ -1,20 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
<rect width="64" height="64" rx="14" fill="#60a5fa" />
<path
d="M18 21h15c7 0 13 6 13 13s-6 13-13 13H18"
fill="none"
stroke="#fff"
stroke-width="6"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M18 21v26M18 34h20"
fill="none"
stroke="#0f1724"
stroke-width="6"
stroke-linecap="round"
stroke-linejoin="round"
opacity=".95"
/>
</svg>

Before

Width:  |  Height:  |  Size: 467 B

View File

@ -1,4 +1,4 @@
import { Workflow } from "lucide-react";
import Image from "next/image";
type PipelineIconProps = {
className?: string;
@ -13,7 +13,14 @@ export function PipelineIcon({ className }: PipelineIconProps) {
}
aria-hidden="true"
>
<Workflow className="h-5 w-5" strokeWidth={2.4} />
<Image
src="/icon.png"
alt=""
width={48}
height={48}
className="h-full w-full object-contain p-0.5"
priority
/>
</div>
);
}

BIN
pipe.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 522 KiB