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