Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 867 Bytes

File metadata and controls

39 lines (30 loc) · 867 Bytes

bpk-component-progress

Backpack progress bar component.

Installation

Check the main Readme for a complete installation guide.

Usage

import { Component } from 'react';
import BpkProgress from '@skyscanner/backpack-web/bpk-component-progress';

const Progress = () => (
  <BpkProgress
    min={0}
    max={100}
    value={63}
    aria-label="Searching"
    onCompleteTransitionEnd={() => alert('Completed!')}
  />
);

const Steps = () => (
  <BpkProgress
    stepped
    min={0}
    max={5}
    value={1}
    aria-label="Checkout"
    getValueText={(value, min, max) => `Step ${value} of ${max}`}
  />
);

Props

Check out the full list of props on Skyscanner's design system documentation website.