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>
);