feat(core): add play button component (#383)

This commit is contained in:
rahim
2026-02-04 00:33:14 +11:00
committed by GitHub
parent 9fa172e8a4
commit 9cfab264d8
41 changed files with 2083 additions and 38 deletions
+9 -1
View File
@@ -1 +1,9 @@
// TODO: Implement PlayButtonElement then register it here
import { PlayButtonElement } from '../../ui/play-button/play-button-element';
customElements.define(PlayButtonElement.tagName, PlayButtonElement);
declare global {
interface HTMLElementTagNameMap {
[PlayButtonElement.tagName]: PlayButtonElement;
}
}