feat(html): add volume slider element (#657)

This commit is contained in:
rahim
2026-02-28 21:09:13 -08:00
committed by GitHub
parent 26c7395cd0
commit 92b7c2ac18
13 changed files with 320 additions and 25 deletions
@@ -0,0 +1,11 @@
import { VolumeSliderElement } from '../../ui/volume-slider/volume-slider-element';
import './slider';
customElements.define(VolumeSliderElement.tagName, VolumeSliderElement);
declare global {
interface HTMLElementTagNameMap {
[VolumeSliderElement.tagName]: VolumeSliderElement;
}
}