Grabbed dndbeyond's source code
``` ~/go/bin/sourcemapper -output ddb -jsurl https://media.dndbeyond.com/character-app/static/js/main.90aa78c5.js ```
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import React from "react";
|
||||
|
||||
import BaseSvg, { BaseSvgProps } from "../../BaseSvg";
|
||||
|
||||
const VulnerabilitySvg: React.FunctionComponent<BaseSvgProps> = ({
|
||||
className = "",
|
||||
fillColor,
|
||||
}) => {
|
||||
return (
|
||||
<BaseSvg className={className} viewBox="0 0 40.89941 48">
|
||||
<path
|
||||
fill={fillColor}
|
||||
d="M40.4497,8c-11,0-20-6-20-8,0,2-9,8-20,8-4,35,20,40,20,40S44.4497,43,40.4497,8Zm-16.63,30.42h-7.12l-9.02-27.02h7.22L20.2597,31.07l5.38-19.67h7.27Z"
|
||||
/>
|
||||
</BaseSvg>
|
||||
);
|
||||
};
|
||||
|
||||
export default VulnerabilitySvg;
|
||||
@@ -0,0 +1,13 @@
|
||||
import { asDarkModeNegativeSvg, asNegativeSvg } from "../../hocs";
|
||||
import VulnerabilitySvg from "./VulnerabilitySvg";
|
||||
|
||||
const NegativeVulnerabilitySvg = asNegativeSvg(VulnerabilitySvg);
|
||||
const DarkModeNegativeVulnerabilitySvg =
|
||||
asDarkModeNegativeSvg(VulnerabilitySvg);
|
||||
|
||||
export default VulnerabilitySvg;
|
||||
export {
|
||||
VulnerabilitySvg,
|
||||
NegativeVulnerabilitySvg,
|
||||
DarkModeNegativeVulnerabilitySvg,
|
||||
};
|
||||
Reference in New Issue
Block a user