bitburner-src/src/ui/React/Hashes.tsx

21 lines
619 B
TypeScript
Raw Normal View History

import * as React from "react";
import { numeralWrapper } from "../../ui/numeralFormat";
2021-10-01 19:08:37 +02:00
import { Theme } from "@mui/material/styles";
import makeStyles from "@mui/styles/makeStyles";
import createStyles from "@mui/styles/createStyles";
2021-10-01 19:08:37 +02:00
const useStyles = makeStyles((theme: Theme) =>
createStyles({
money: {
color: theme.colors.money,
},
}),
);
export function Hashes({ hashes }: { hashes: number | string }): React.ReactElement {
const classes = useStyles();
2021-09-05 01:09:30 +02:00
return (
2021-10-01 19:08:37 +02:00
<span className={classes.money}>{typeof hashes === "number" ? numeralWrapper.formatHashes(hashes) : hashes}</span>
2021-09-05 01:09:30 +02:00
);
}