File size: 145 Bytes
e903a32 |
1 2 3 4 5 6 7 |
---
const { html, class: className, ariaLabel } = Astro.props;
---
<div class={className} role="img" aria-label={ariaLabel} set:html={html} />
|
e903a32 |
1 2 3 4 5 6 7 |
---
const { html, class: className, ariaLabel } = Astro.props;
---
<div class={className} role="img" aria-label={ariaLabel} set:html={html} />
|