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,24 @@
import * as React from "react";
import BaseSvg from "../../BaseSvg";
import { InjectedSvgProps } from "../../hocs";
export default class SidebarLeftSvg extends React.PureComponent<InjectedSvgProps> {
static defaultProps = {
className: "",
};
render() {
const { className, fillColor } = this.props;
return (
<BaseSvg viewBox="0 0 16 16" className={className}>
<path
fill={fillColor}
d="M11,2.48,5,8l6,5.52a1.3,1.3,0,0,1-.21,2.12h0a2.25,2.25,0,0,1-2.68-.17L0,8,8.11.53A2.25,2.25,0,0,1,10.79.36h0A1.3,1.3,0,0,1,11,2.48Z"
/>
<polygon fill={fillColor} points="6.92 8 16 0 16 16 6.92 8" />
</BaseSvg>
);
}
}
@@ -0,0 +1,14 @@
import { asDarkSvg, asDisabledSvg, asLightSvg } from "../../hocs";
import SidebarLeftSvg from "./SidebarLeftSvg";
const LightSidebarLeftSvg = asLightSvg(SidebarLeftSvg);
const DarkSidebarLeftSvg = asDarkSvg(SidebarLeftSvg);
const DisabledSidebarLeftSvg = asDisabledSvg(SidebarLeftSvg);
export default SidebarLeftSvg;
export {
SidebarLeftSvg,
LightSidebarLeftSvg,
DarkSidebarLeftSvg,
DisabledSidebarLeftSvg,
};