bitburner-src/src/Bladeburner/ui/StealthIcon.tsx

14 lines
370 B
TypeScript
Raw Normal View History

2021-09-27 23:09:48 +02:00
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>
);
}