globalbrain/sefirot

[Indicator] Add a new `<SIndicator>` component

kiaking opened this issue · 0 comments

That shows indicator like this one.

Screenshot 2024-05-31 at 20 52 02 Screenshot 2024-05-31 at 15 59 19
interface Props {
  mode: Mode
}

type Mode =
  | 'pending'
  | 'ready'
  | 'queued'
  | 'running'
  | 'Completed'
  | 'Failed'