Files
2026-05-16 17:37:29 +02:00

11 lines
283 B
JavaScript
Executable File

// ionicons: Custom Elements Define Library, ES Module/ES5 Target
import { defineCustomElement } from './ionicons.core.js';
import {
Icon
} from './ionicons.components.js';
export function defineCustomElements(window, opts) {
defineCustomElement(window, [
Icon
], opts);
}