You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
429 B

---
import Spoiler from "./Spoiler.astro";
const { spoiler, img, alt, source } = Astro.props;
---
<div>
{
spoiler ? (
<Spoiler {...Astro.props}>
<img src={img} alt={alt} />
</Spoiler>
) : source ? (
<a href={source}>
<img src={img} alt={alt} />
</a>
) : (
<img src={img} alt={alt} />
)
}
</div>