docs/guide/lucide/advanced/content-template-element.md
By default icons inside <template> tags are not added.
By setting the inTemplates option to true, icons inside templates will also be replaced.
More about Content Template element on MDN.
createIcons function with template element::: sandpack {template=vanilla editorHeight=420 editorWidthPercentage=60 dependencies="lucide"}
import { createIcons, Backpack } from 'lucide/dist/cjs/lucide';
import "./styles.css";
createIcons({
icons: {
Backpack,
},
inTemplates: true
});
const container = document.getElementById("container");
const template = document.getElementById("template");
const firstClone = document.importNode(template.content, true);
container.appendChild(firstClone);
const secondClone = document.importNode(template.content, true);
container.appendChild(secondClone);
<!DOCTYPE html>
<html>
<body>
<template id="template">
<i data-lucide="backpack"></i>
</template>
<div id="container"></div>
<script src="index.js">
</script>
</body>
</html>
:::