import * as React from "react"; import LinearProgress from "@mui/material/LinearProgress"; import { TableCell, Tooltip, Typography } from "@mui/material"; import { characterOverviewStyles } from "./CharacterOverview"; import { ISkillProgress } from "../../PersonObjects/formulas/skill"; import { formatExp } from "../formatNumber"; interface IProgressProps { min: number; max: number; current: number; remaining: number; progress: number; color?: React.CSSProperties["color"]; } interface IStatsOverviewCellProps { progress: ISkillProgress; color?: React.CSSProperties["color"]; } export function StatsProgressBar({ min, max, current, remaining, progress, color, }: IProgressProps): React.ReactElement { const tooltip = ( Progress:  {formatExp(current)} / {formatExp(max - min)}
Remaining:  {formatExp(remaining)} ({progress.toFixed(2)}%)
); return ( ); } export function StatsProgressOverviewCell({ progress: skill, color }: IStatsOverviewCellProps): React.ReactElement { const classes = characterOverviewStyles(); return ( ); }