/** * External dependencies */ import React from 'react'; /** * Internal dependencies */ import './style.scss'; import Icon from '../sui-icon'; export default function ProgressBar( { progress = 0, status = '' } ) { return (
{ progress + '%' }
{ status &&
{ status }
}
); }