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,18 @@
import { FC, HTMLAttributes } from "react";
type SvgProps = HTMLAttributes<SVGElement>;
export const AlignLeftIcon: FC<SvgProps> = (props) => (
<svg
viewBox="0 0 24 24"
width="1em"
height="1em"
aria-labelledby="alignLeftTitle"
{...props}
>
<title id="alignLeftTitle">Sidebar Align Left Icon</title>
<path d="M21,3V21H9.5V3H21m3-3H6.5V24H24V0Z" />
<rect x="0.5" y="0.5" width="5.91" height="23" />
<path d="M5.91,1V23H1V1H5.91m1-1H0V24H6.91V0Z" />
</svg>
);
@@ -0,0 +1,18 @@
import { FC, HTMLAttributes } from "react";
type SvgProps = HTMLAttributes<SVGElement>;
export const AlignRightIcon: FC<SvgProps> = (props) => (
<svg
viewBox="0 0 24 24"
width="1em"
height="1em"
aria-labelledby="alignRightTitle"
{...props}
>
<title id="alignRightTitle">Sidebar Align Right Icon</title>
<path d="M15.5,3V21H3V3H15.5m3-3H0V24H18.5V0Z" />
<rect x="17.59" y="0.5" width="5.91" height="23" />
<path d="M23,1V23H18.09V1H23m1-1H17.09V24H24V0Z" />
</svg>
);
@@ -0,0 +1,17 @@
import { FC, HTMLAttributes } from "react";
type SvgProps = HTMLAttributes<SVGElement>;
export const ArrowsLeftIcon: FC<SvgProps> = (props) => (
<svg
viewBox="0 0 16 16"
width="1em"
height="1em"
aria-labelledby="leftArrowsTitle"
{...props}
>
<title id="leftArrowsTitle">Left Arrows Icon</title>
<path 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 points="6.92 8 16 0 16 16 6.92 8" />
</svg>
);
@@ -0,0 +1,17 @@
import { FC, HTMLAttributes } from "react";
type SvgProps = HTMLAttributes<SVGElement>;
export const ArrowsRightIcon: FC<SvgProps> = (props) => (
<svg
viewBox="0 0 16 16"
width="1em"
height="1em"
aria-labelledby="rightArrowsTitle"
{...props}
>
<title id="rightArrowsTitle">Right Arrows Icon</title>
<path d="M5.21.36h0A2.25,2.25,0,0,1,7.89.53L16,8,7.89,15.47a2.25,2.25,0,0,1-2.68.17h0A1.3,1.3,0,0,1,5,13.52L11,8,5,2.48A1.3,1.3,0,0,1,5.21.36Z" />
<polygon points="9.09 8 0 0 0 16 9.09 8" />
</svg>
);
@@ -0,0 +1,28 @@
import { FC, HTMLAttributes } from "react";
type SvgProps = HTMLAttributes<SVGElement>;
export const FixedIcon: FC<SvgProps> = (props) => (
<svg
viewBox="0 0 24 24"
width="1em"
height="1em"
aria-labelledby="fixedTitle"
{...props}
>
<title id="fixedTitle">Sidebar Fixed Icon</title>
<path d="M15.5,3V21H3V3H15.5m3-3H0V24H18.5V0Z" />
<rect x="17.59" y="0.5" width="5.91" height="23" />
<path d="M23,1V23H18.09V1H23m1-1H17.09V24H24V0Z" />
<line
fill="none"
stroke="#000"
strokeMiterlimit={10}
strokeWidth="3px"
x1="12"
y1="5.5"
x2="12"
y2="19"
/>
</svg>
);
@@ -0,0 +1,19 @@
import { FC, HTMLAttributes } from "react";
type SvgProps = HTMLAttributes<SVGElement>;
export const OverlayIcon: FC<SvgProps> = (props) => (
<svg
viewBox="0 0 24 24"
width="1em"
height="1em"
aria-labelledby="overlayTitle"
{...props}
>
<title id="overlayTitle">Sidebar Overlay Icon</title>
<path d="M14.5,3V21H3V3H14.5m3-3H0V24H17.5V0Z" />
<rect x="17.59" y="0.5" width="5.91" height="23" />
<path d="M23,1V23H18.09V1H23m1-1H17.09V24H24V0Z" />
<polygon points="6.28 12.32 12.5 19.14 12.5 5.5 6.28 12.32" />
</svg>
);