From 74c46711c75f04532ac7ce4e68c3b651b8dc1ca5 Mon Sep 17 00:00:00 2001 From: Jakob Guddas Date: Sat, 25 Jul 2026 12:26:26 +0200 Subject: [PATCH] feat(analytics): add utm source and medium (#4596) --- CONTRIBUTING.md | 2 +- docs/.vitepress/theme/components/icons/IconPreview.vue | 2 +- docs/contribute/icon-design-guide.md | 2 +- scripts/generateChangedIconsCommentMarkup.mts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2bd46a67d..ac7ea7869 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -30,7 +30,7 @@ Read it here: [ICON_GUIDELINES](https://lucide.dev/contribute/icon-design-guide) #### Lucide Studio -For formatting and adjusting SVG icons, [@jguddas](https://github.com/jguddas) made a great tool called [Lucide Studio](https://studio.lucide.dev/). It is a web-based SVG editor that allows you to edit and adjust icons in the Lucide style. You can use it to create new icons or modify existing ones. +For formatting and adjusting SVG icons, [@jguddas](https://github.com/jguddas) made a great tool called [Lucide Studio](https://studio.lucide.dev/?utm_source=lucide.dev&utm_medium=contributing-guide). It is a web-based SVG editor that allows you to edit and adjust icons in the Lucide style. You can use it to create new icons or modify existing ones. #### Editor guides diff --git a/docs/.vitepress/theme/components/icons/IconPreview.vue b/docs/.vitepress/theme/components/icons/IconPreview.vue index 4cd4f5142..687985b51 100644 --- a/docs/.vitepress/theme/components/icons/IconPreview.vue +++ b/docs/.vitepress/theme/components/icons/IconPreview.vue @@ -84,7 +84,7 @@ const base64InnerSvg = computed(() => { ` : ''}${name}${linkToLucideStudio ? '' : ''}`; + return `${linkToLucideStudio ? `` : ''}${name}${linkToLucideStudio ? '' : ''}`; }); const svgFiles = await readSvgDirectory(ICONS_DIR);