cohost/html/diyavepeta.tsx

17 lines
683 B
TypeScript
Raw Normal View History

2023-09-06 21:48:30 -04:00
import { ToggleOnClick, render_and_copy, static_url } from "./common.tsx";
render_and_copy(
<ToggleOnClick>
2023-09-06 21:51:10 -04:00
<img
src={static_url("davepeta-0.png")}
alt="davepeta from homestuck looking at the camera. their robe is white green-bordered, their claws are orange, their wings are white and orange-bordered, etc."
style="margin: 0"
/>
<img
src={static_url("davepeta-1.png")}
alt="davepeta from homestuck looking at the camera. their robe is white green-bordered, their claws are green, their wings are white and green-bordered, etc."
style="margin: 0"
/>
2023-09-06 21:48:30 -04:00
</ToggleOnClick>
);