Create progress stacked bar chart

This commit is contained in:
Takeshi Kimata
2024-04-27 14:08:05 +09:00
parent c23d652d05
commit c2c5652769
5 changed files with 202 additions and 1 deletions

View File

@@ -78,7 +78,7 @@ export default function TestCaseSelector({
} else if (uid === "failed") {
return <CircleX size={16} color="#f31260" />;
} else if (uid === "skipped") {
return <CircleSlash2 size={16} color="#d4d4d8" />;
return <CircleSlash2 size={16} color="#52525b" />;
}
};