0.2.0 • Published 3 years ago

@primitives/progress-bar v0.2.0

Weekly downloads
36
License
MIT
Repository
github
Last release
3 years ago

ProgressBar is a box that holds other components inside. It can be styled to some limited extent. The closest analogs are:

  • div in Web
  • View in Native
type TProgressBar<TStyles> = {
  id?: string,
  ariaValuemin?: number,
  ariaValuenow?: number,
  ariaValuemax?: number,
  children?: ReactNode,
  accessibilityLabel?: string,
  style?: TStyle,
}

⚠️TStyles differ on Native and Web given each one’s different environment-specific elements and document-models.