cruise 0.1.75

YAML-driven coding agent workflow orchestrator
Documentation
1
2
3
4
5
6
7
8
9
export function Spinner({ color = "border-gray-400" }: { color?: string }) {
  return (
    <span
      role="status"
      aria-label="Loading"
      className={`inline-block w-3 h-3 rounded-full border-2 border-t-transparent animate-spin ${color}`}
    />
  );
}