<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Clix For Business</title>
    <description>The latest articles on DEV Community by Clix For Business (@clix_forbusiness_25e4796).</description>
    <link>https://dev.to/clix_forbusiness_25e4796</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3971366%2F6f5c017a-d8d0-418f-ba33-4f2d4fbc1ccb.jpeg</url>
      <title>DEV Community: Clix For Business</title>
      <link>https://dev.to/clix_forbusiness_25e4796</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/clix_forbusiness_25e4796"/>
    <language>en</language>
    <item>
      <title>Use 1,711 Icons from a Single URL — No Installation, No API Keys</title>
      <dc:creator>Clix For Business</dc:creator>
      <pubDate>Sat, 06 Jun 2026 14:23:55 +0000</pubDate>
      <link>https://dev.to/clix_forbusiness_25e4796/use-1711-icons-from-a-single-url-no-installation-no-api-keys-bij</link>
      <guid>https://dev.to/clix_forbusiness_25e4796/use-1711-icons-from-a-single-url-no-installation-no-api-keys-bij</guid>
      <description>&lt;p&gt;Lucide Icons are beautiful. But installing them? That's extra work.&lt;/p&gt;

&lt;p&gt;What if you could just use them directly from a URL?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://cosmicline.qzz.io/u/0001/icons/lucide/arrow-right/svg?size=32&amp;amp;color=4F46E5" rel="noopener noreferrer"&gt;https://cosmicline.qzz.io/u/0001/icons/lucide/arrow-right/svg?size=32&amp;amp;color=4F46E5&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;That's it. No npm install. No imports. No bundle size increase. Just a URL that returns perfect SVG.&lt;/p&gt;

&lt;h2&gt;
  
  
  Three Ways to Use It
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Paste the URL in HTML
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://cosmicline.qzz.io/u/0001/icons/lucide/check/svg?size=24&amp;amp;color=10B981"&lt;/span&gt; &lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. Fetch with JavaScript
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;svg&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;fetch&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;https://cosmicline.qzz.io/u/0001/icons/lucide/arrow-right/svg?size=32&amp;amp;color=4F46E5&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
  &lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;then&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;r&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;r&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;text&lt;/span&gt;&lt;span class="p"&gt;());&lt;/span&gt;
&lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;body&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;innerHTML&lt;/span&gt; &lt;span class="o"&gt;+=&lt;/span&gt; &lt;span class="nx"&gt;svg&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Use in React
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight jsx"&gt;&lt;code&gt;&lt;span class="p"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nt"&gt;img&lt;/span&gt; &lt;span class="na"&gt;src&lt;/span&gt;&lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="s"&gt;"https://cosmicline.qzz.io/u/0001/icons/lucide/home/svg?size=24&amp;amp;color=currentColor"&lt;/span&gt; &lt;span class="p"&gt;/&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Customize On The Fly
&lt;/h2&gt;

&lt;p&gt;Just add query parameters:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;?size=48 — change size&lt;/li&gt;
&lt;li&gt;?color=FF0000 — change color&lt;/li&gt;
&lt;li&gt;?color=currentColor — inherit parent color (best for dark mode)&lt;/li&gt;
&lt;li&gt;?stroke_width=1.5 — make it thinner&lt;/li&gt;
&lt;li&gt;?rotate=90 — rotate the icon&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Is It Safe?
&lt;/h2&gt;

&lt;p&gt;Yes. It's domain-locked. Only your registered websites can use the URL. Even if someone sees it in your source code, they can't use it from their own site.&lt;/p&gt;

&lt;h2&gt;
  
  
  Browse All Icons
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://cosmicline.qzz.io/assets/icons/lucide-icons" rel="noopener noreferrer"&gt;View all 1,711 Lucide Icons here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Then just drop the icon name into the URL and you're done.&lt;/p&gt;

&lt;h2&gt;
  
  
  That's It
&lt;/h2&gt;

&lt;p&gt;No installation. No secrets. No complications. Just icons from a URL.&lt;/p&gt;

&lt;p&gt;Try it on your next project. ✦&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>startup</category>
      <category>saas</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
