feat(core): add pip button component (#525)

This commit is contained in:
rahim
2026-02-13 22:21:09 +11:00
committed by GitHub
parent 7b41930eed
commit 2c8b77af45
9 changed files with 342 additions and 0 deletions
@@ -0,0 +1,9 @@
import { PiPButtonElement } from '../../ui/pip-button/pip-button-element';
customElements.define(PiPButtonElement.tagName, PiPButtonElement);
declare global {
interface HTMLElementTagNameMap {
[PiPButtonElement.tagName]: PiPButtonElement;
}
}