refactor: update artifact list style

This commit is contained in:
tao.chen
2026-09-02 10:10:41 +08:00
committed by tao.chen
parent 4098e5482e
commit b47848cc08
4 changed files with 473 additions and 89 deletions
+12 -1
View File
@@ -23,7 +23,8 @@ type IconName =
| "menu"
| "external"
| "release"
| "play";
| "play"
| "grip-vertical";
type IconProps = {
name: IconName;
@@ -181,6 +182,16 @@ export default function Icon({
</>
),
play: <path d="m8 5 11 7-11 7V5Z" />,
"grip-vertical": (
<>
<circle cx="9" cy="6" r="1" fill="currentColor" stroke="none" />
<circle cx="9" cy="12" r="1" fill="currentColor" stroke="none" />
<circle cx="9" cy="18" r="1" fill="currentColor" stroke="none" />
<circle cx="15" cy="6" r="1" fill="currentColor" stroke="none" />
<circle cx="15" cy="12" r="1" fill="currentColor" stroke="none" />
<circle cx="15" cy="18" r="1" fill="currentColor" stroke="none" />
</>
),
};
return (