Files
bitburner-src/src/Bladeburner/ui/StealthIcon.tsx
T
2021-09-27 17:09:48 -04:00

14 lines
370 B
TypeScript

import React from "react";
import { stealthIcon } from "../data/Icons";
import Typography from "@mui/material/Typography";
import Tooltip from "@mui/material/Tooltip";
export function StealthIcon(): React.ReactElement {
return (
<Tooltip disableInteractive title={<Typography>This action involves stealth</Typography>}>
{stealthIcon}
</Tooltip>
);
}