globalbrain / sefirot

Global Brain Design System.
https://sefirot.globalbrains.com
MIT License
151 stars 12 forks source link

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

Closed kiaking closed 4 months ago

kiaking commented 4 months ago

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'