comparison design_system/src/components/stack.js @ 254:2b6e732087ff

[ui] Add complete native component catalog Co-authored-by: Copilot <[email protected]>
author MrJuneJune <me@mrjunejune.com>
date Tue, 04 Aug 2026 15:12:09 -0700
parents 117c4d53c9a4
children
comparison
equal deleted inserted replaced
253:fdf3816959cb 254:2b6e732087ff
1 /**
2 * Provides a token-driven flex layout around arbitrary native HTML.
3 *
4 * @extends {HTMLElement}
5 */
1 export class ZenStack extends HTMLElement {} 6 export class ZenStack extends HTMLElement {}
2 7
3 if (!customElements.get("zen-stack")) { 8 if (!customElements.get("zen-stack")) {
4 customElements.define("zen-stack", ZenStack); 9 customElements.define("zen-stack", ZenStack);
5 } 10 }