//#region node_modules/astro/dist/runtime/client/dev-toolbar/ui-library/icons.js function isDefinedIcon(icon) { return icon in icons; } function getIconElement(name) { const icon = icons[name]; if (!icon) return; const svgFragment = new DocumentFragment(); svgFragment.append(document.createRange().createContextualFragment(icon)); return svgFragment.firstElementChild; } var icons = { "astro:logo": ``, warning: ``, "arrow-down": "", bug: "", "": "", "check-circle": "", gear: "", lightbulb: "", "file-search": "", star: "", checkmark: "", "dots-three": "", copy: "", compress: "", grid: "", puzzle: "", approveUser: "", checkCircle: "", resizeImage: "", searchFile: "", image: "", robot: "", sitemap: "", gauge: "", "person-arms-spread": "", "arrow-left": "", "houston-detective": "" }; //#endregion export { isDefinedIcon as n, getIconElement as t };