feat(ui): expand workflow-ready components

This commit is contained in:
2026-03-20 18:11:48 +08:00
parent 36822f05e0
commit a8c1d3f256
27 changed files with 1562 additions and 85 deletions
+21
View File
@@ -131,3 +131,24 @@ export function SortUnsortedIcon({ className, ...props }: IconProps) {
</IconFrame>
);
}
export function SpinnerIcon({ className, ...props }: IconProps) {
return (
<IconFrame className={className} {...props}>
<circle
cx="8"
cy="8"
opacity="0.22"
r="5.25"
stroke="currentColor"
strokeWidth="1.75"
/>
<path
d="M8 2.75A5.25 5.25 0 0 1 13.25 8"
stroke="currentColor"
strokeLinecap="round"
strokeWidth="1.75"
/>
</IconFrame>
);
}