Welcome to the Iconweuse Getting Started guide. Whether you're a designer looking for static assets or a developer building complex web applications, we have the tools to help you integrate high-quality icons in seconds.
Our goal is to make icon implementation as smooth as possible through multiple distribution channels: CDN, NPM, and direct downloads.
The fastest way to get up and running is by using our optimized CDN or by directly copying SVG code from our icon library.
Direct SVG integration is the most flexible approach for developers who need maximum control over styling and performance.
Browse the Icon Library, select the icon you need, and click on "Copy SVG." The code will be instantly copied to your clipboard.
Paste the code directly into your HTML, JSX, or Vue templates. You can then style it using standard CSS or utility classes like Tailwind CSS.
<svg width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
<path d="M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm5 13h-4v4h-2v-4H7v-2h4V7h2v4h4v2z"/>
</svg>
Our CDN is the easiest way to add the entire Iconweuse library to your website. It provides access to our custom-built icon font.
Paste the following line into the <head> section of your HTML file:
<link href="https://cdn.iconweuse.com/cdn/icon/k4z9rm2tq1" rel="stylesheet" />Once the CDN is linked, you can use any icon by adding a simple <i> tag with the appropriate classes.
<i class="iwu-breeze iwu-regular iwu-search"></i>For React, Vue, or modern Javascript applications, we recommend installing our package via NPM or Yarn.
npm install iconweuseAfter installation, you can import and use icons directly as components or import the CSS globally.
Want to host the assets yourself? You can download the complete Iconweuse package from your account dashboard.