feat(ui): expand workflow-ready components
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user