Android build v1.1.15
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
export function ArenaBar({
|
||||
className = '',
|
||||
current,
|
||||
max,
|
||||
shield = 0,
|
||||
}: {
|
||||
className?: string
|
||||
current: number
|
||||
max: number
|
||||
shield?: number
|
||||
}) {
|
||||
const percent = max > 0 ? Math.max(0, Math.min(100, (current / max) * 100)) : 0
|
||||
const shieldPercent = max > 0 ? Math.max(0, Math.min(100, (shield / max) * 100)) : 0
|
||||
return (
|
||||
<div className={`iwt2-bar ${className}`}>
|
||||
<span style={{ width: `${percent}%` }} />
|
||||
{shieldPercent > 0 && <i style={{ width: `${shieldPercent}%` }} />}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user