blob: d10fc6eb2cc529e258e1685bc34ceaa5f9a4f338 [file] [log] [blame]
import React from 'react';
export function Progress({ percent }: { percent: number }) {
return (
<div className="h-0.5 w-[calc(100%-1.5rem)] bg-neutral-200 dark:bg-neutral-600 progress">
<div className="h-0.5 bg-[#C0C3F1]" style={{ width: `${percent}%` }}></div>
</div>
);
}