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:
2025-05-28 11:50:03 -07:00
commit 8df9031d27
3592 changed files with 319051 additions and 0 deletions
@@ -0,0 +1,36 @@
import React from "react";
import BaseSvg from "../../BaseSvg";
import { InjectedSvgProps } from "../../hocs";
export default class LongRestSvg extends React.PureComponent<InjectedSvgProps> {
render() {
const { fillColor, className } = this.props;
let classNames: Array<string> = ["ddbc-long-rest-svg"];
if (className) {
classNames.push(className);
}
return (
<BaseSvg className={classNames.join(" ")} viewBox="0 0 443.5 443.5">
<path
fill={fillColor}
d="M221.75.25c122.33,0,221.5,99.17,221.5,221.5s-99.17,221.5-221.5,221.5S.25,344.08.25,221.75,99.42.25,221.75.25ZM370.58,353.13c69.03-39.84,83.21-144.48,31.66-233.72C350.7,30.17,252.96-9.88,183.92,29.97c-69.03,39.84-83.21,144.48-31.66,233.72C203.8,352.93,301.54,392.98,370.58,353.13Z"
/>
<ellipse
fill="none"
stroke={fillColor}
strokeMiterlimit={10}
strokeWidth="10px"
cx="277.25"
cy="191.55"
rx="144.3145"
ry="186.5974"
transform="matrix(0.86569, -0.50058, 0.50058, 0.86569, -58.64876, 164.51324)"
/>
</BaseSvg>
);
}
}
@@ -0,0 +1,8 @@
import { asLightSvg, asThemedSvg } from "../../hocs";
import LongRestSvg from "./LongRestSvg";
const LightLongRestSvg = asLightSvg(LongRestSvg);
const ThemedLongRestSvg = asThemedSvg(LongRestSvg);
export default LongRestSvg;
export { LongRestSvg, LightLongRestSvg, ThemedLongRestSvg };