UNPKG

@capgeminiuk/dcx-react-library

Version:

[![CircleCI](https://circleci.com/gh/Capgemini/dcx-react-library.svg?style=svg)](https://circleci.com/gh/Capgemini/dcx-react-library)

34 lines (33 loc) 698 B
import React from 'react'; type ProgressProps = { /** * display for the progress bar */ label: string; /** * max value of the progress bar */ max: number; /** * class name for the progress bar */ className?: string; /** * id for the progress bar */ id?: string; /** * class name for the label */ labelClassName?: string; /** * current value of the progress bar */ value?: number; /** * tab index value */ tabIndex?: number; }; export declare const Progress: ({ label, max, className, id, labelClassName, value, tabIndex, }: ProgressProps) => React.JSX.Element; export {};