mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-26 11:10:58 +02:00
14 lines
370 B
TypeScript
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>
|
|
);
|
|
}
|