// @flow import React from 'react'; import './ProgressBar.scss'; type Props = { className?: string, /** A number between 0 and 100 inclusive representing the width percentage */ progress?: number, }; const ProgressBar = ({ className = '', progress = 0 }: Props) => { const style = { width: `${progress}%`, }; return (
); }; export default ProgressBar;