Newer
Older

Planoetscher Daniel (Student Com20)
committed
import './linear-progress.scss';
interface Props {
percent: number;
color: string;

Planoetscher Daniel (Student Com20)
committed
}
export default function LinearProgress({ percent, color }: Props) {

Planoetscher Daniel (Student Com20)
committed
return (
<div className="linear-progress">
<div
className={'progress' + (color ? 'bg-gradient-horizontal-' + color : '')}
style={{ width: percent + '%' }}></div>

Planoetscher Daniel (Student Com20)
committed
</div>
);