Files
legume/src/lib/icons.ts
T
klemek f75325ae1e
Deploy / Build (push) Has been cancelled
Deploy / Deploy to Stapler (push) Has been cancelled
Lint / ESLint (push) Has been cancelled
Lint / TypeScript (push) Has been cancelled
refactor: refresh from template
2026-05-02 21:44:00 +02:00

15 lines
258 B
TypeScript

import { nextTick } from "vue";
import { createIcons, icons } from "lucide";
export async function updateIcons() {
await nextTick();
createIcons({
icons,
nameAttr: "icon",
attrs: {
width: "1.1em",
height: "1.1em",
},
});
}