feat(core): add seek button component (#526)

This commit is contained in:
rahim
2026-02-13 23:30:25 +11:00
committed by GitHub
parent 2c8b77af45
commit c733077d32
10 changed files with 399 additions and 2 deletions
@@ -0,0 +1,9 @@
import { SeekButtonElement } from '../../ui/seek-button/seek-button-element';
customElements.define(SeekButtonElement.tagName, SeekButtonElement);
declare global {
interface HTMLElementTagNameMap {
[SeekButtonElement.tagName]: SeekButtonElement;
}
}