``` ~/go/bin/sourcemapper -output ddb -jsurl https://media.dndbeyond.com/character-app/static/js/main.90aa78c5.js ```
44 lines
1.0 KiB
TypeScript
44 lines
1.0 KiB
TypeScript
import * as React from "react";
|
|
|
|
import { Tooltip } from "@dndbeyond/character-common-components/es";
|
|
import { CharacterTheme } from "@dndbeyond/character-rules-engine/es";
|
|
|
|
import {
|
|
DarkModeNegativeVulnerabilitySvg,
|
|
NegativeVulnerabilitySvg,
|
|
} from "../../Svg";
|
|
|
|
interface SvgInjectedProps {
|
|
className?: string;
|
|
}
|
|
|
|
interface Props {
|
|
title: string;
|
|
className: string;
|
|
theme?: CharacterTheme;
|
|
secondaryFill?: string;
|
|
}
|
|
export default class VulnerabilityIcon extends React.PureComponent<Props> {
|
|
static defaultProps = {
|
|
title: "Vulnerability",
|
|
className: "",
|
|
theme: {},
|
|
};
|
|
|
|
render() {
|
|
const { title, className, theme } = this.props;
|
|
|
|
let classNames: Array<string> = [className, "ddbc-vulnerability-icon"];
|
|
|
|
let SvgIcon: React.ComponentType<SvgInjectedProps> = theme?.isDarkMode
|
|
? DarkModeNegativeVulnerabilitySvg
|
|
: NegativeVulnerabilitySvg;
|
|
|
|
return (
|
|
<Tooltip title={title} isDarkMode={theme?.isDarkMode}>
|
|
<SvgIcon className={classNames.join(" ")} />
|
|
</Tooltip>
|
|
);
|
|
}
|
|
}
|