fix: use simplified Tux penguin icon optimized for small sizes
Replace detailed Tux SVG with a simplified stroke-based penguin head that renders cleanly at 20x20. The new icon uses strokes instead of fills (matching lucide's style) and was specifically designed by Codex for small-size rendering. The simplified design includes just the essential features (head outline, eyes, beak, belly) and uses currentColor to inherit the chip's color state.
This commit is contained in:
parent
ae8f6b689a
commit
9281700b82
1 changed files with 5 additions and 2 deletions
|
|
@ -26,8 +26,11 @@ const hostPlatformOptions: { id: HostPlatform; label: string; description: strin
|
|||
label: 'Linux',
|
||||
description: 'Download the static binary and enable the systemd service on Debian, Ubuntu, RHEL, Arch, and more.',
|
||||
icon: (
|
||||
<svg class="w-5 h-5" viewBox="0 0 24 24" fill="currentColor">
|
||||
<path d="M12.504 0c-.155 0-.315.008-.48.021-4.226.333-3.105 4.807-3.17 6.298-.076 1.092-.3 1.953-1.05 3.02-.885 1.051-2.127 2.75-2.716 4.521-.278.832-.41 1.684-.287 2.489a6.9 6.9 0 00.131.902c.145 1.16.692 1.83 1.529 2.472.836.642 1.943 1.17 3.074 1.17.074 0 .148-.002.221-.007.86-.064 1.49-.433 1.944-1.078.45-.641.726-1.475.904-2.364.179-.891.241-1.846.241-2.65 0-.804.062-1.759.241-2.65.178-.889.454-1.723.904-2.364.454-.645 1.084-1.014 1.944-1.078.073-.005.147-.007.221-.007 1.131 0 2.238.528 3.074 1.17.837.642 1.384 1.312 1.529 2.472.044.299.073.598.131.902.123.805-.009 1.657-.287 2.489-.589 1.771-1.831 3.47-2.716 4.521-.75 1.067-.974 1.928-1.05 3.02-.065 1.491 1.056 5.965-3.17 6.298-.165.013-.325.021-.48.021zm-4.5-18.5c-.828 0-1.5.672-1.5 1.5s.672 1.5 1.5 1.5 1.5-.672 1.5-1.5-.672-1.5-1.5-1.5zm9 0c-.828 0-1.5.672-1.5 1.5s.672 1.5 1.5 1.5 1.5-.672 1.5-1.5-.672-1.5-1.5-1.5z"/>
|
||||
<svg class="w-5 h-5" viewBox="0 0 20 20" fill="none" stroke="currentColor" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path d="M6.6 7.1c-.5.7-.9 1.5-1.1 2.3l-.5 1.9c-.4 1.5.3 3.1 1.7 3.9.9.5 2 .8 3.3.8s2.4-.3 3.3-.8c1.4-.8 2.1-2.4 1.7-3.9l-.5-1.9c-.2-.8-.6-1.6-1.1-2.3-.2-2-1.9-3.6-4-3.6s-3.8 1.6-4 3.6Z"/>
|
||||
<path d="M7.3 7.6a.6.6 0 1 1-1.2 0 .6.6 0 0 1 1.2 0Zm6.6 0a.6.6 0 1 1-1.2 0 .6.6 0 0 1 1.2 0Z"/>
|
||||
<path d="M8.8 9.9c.4.5.8.7 1.2.7.4 0 .8-.2 1.2-.7"/>
|
||||
<path d="M7.5 12.5c.5.9 1.5 1.5 2.5 1.5s2-.6 2.5-1.5"/>
|
||||
</svg>
|
||||
),
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue