vega-frontend-monorepo/apps/token/src/routes/tranches/progress-bar.tsx
2022-04-25 15:03:58 +01:00

32 lines
611 B
TypeScript

interface ProgressBarProps {
width: number;
percentage: number;
color: string;
}
export const ProgressBar = ({ width, color, percentage }: ProgressBarProps) => {
return (
<div
style={{
position: 'relative',
width,
height: 6,
borderRadius: 3,
backgroundColor: 'rgba(255,255,255,0.3)',
}}
>
<div
style={{
position: 'absolute',
top: 0,
left: 0,
height: 6,
borderRadius: 3,
backgroundColor: color,
width: percentage + '%',
}}
/>
</div>
);
};