feat(html): add thumbnail element (#646)

This commit is contained in:
rahim
2026-02-27 17:02:15 -08:00
committed by GitHub
parent ed22730592
commit 8457b1241c
4 changed files with 195 additions and 18 deletions
+9
View File
@@ -0,0 +1,9 @@
import { ThumbnailElement } from '../../ui/thumbnail/thumbnail-element';
customElements.define(ThumbnailElement.tagName, ThumbnailElement);
declare global {
interface HTMLElementTagNameMap {
[ThumbnailElement.tagName]: ThumbnailElement;
}
}