12 lines
378 B
HTML
12 lines
378 B
HTML
<script src="https://unpkg.com/lucide@latest"></script>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
lucide.createIcons();
|
|
});
|
|
|
|
window.refreshIcons = (container = document) => {
|
|
const pending = container.querySelectorAll('[data-lucide]');
|
|
if (pending.length === 0) return;
|
|
lucide.createIcons();
|
|
};
|
|
</script> |