惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
MyScale Blog
MyScale Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
爱范儿
爱范儿
P
Proofpoint News Feed
人人都是产品经理
人人都是产品经理
Last Week in AI
Last Week in AI
罗磊的独立博客
G
Google Developers Blog
Y
Y Combinator Blog
博客园 - 【当耐特】
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
美团技术团队
宝玉的分享
宝玉的分享
Jina AI
Jina AI
小众软件
小众软件
T
Tailwind CSS Blog
A
About on SuperTechFans

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Use SVGIcons as a Claude Custom Connector to Find Icons F...
Svg/icons · 2026-05-23 · via DEV Community

Svg/icons

Finding the right icon is one of those small tasks that can quietly interrupt your development flow.

You are building a dashboard, a landing page, a settings screen, or a SaaS interface. You need a clean SVG icon. You open a new tab, search manually, compare styles, copy an SVG, maybe optimize it, then come back to your code.

It works, but it breaks focus.

That is why I created a way to use SVGIcons as a Claude Custom Connector.

With it, Claude can search SVG icons directly from your conversation, helping you discover relevant icons faster while you are designing or coding.

What is SVGIcons?

SVGIcons is a search engine for SVG icons built for developers.

It helps you find SVG icons for interfaces, apps, websites, dashboards, documentation, and design systems.

Instead of browsing icon sets manually, you can search by intent:

  • settings icon
  • database icon
  • AI assistant icon
  • download cloud icon
  • user profile icon
  • calendar outline icon
  • security shield icon

The goal is simple: make icon discovery faster and more developer-friendly.

Why connect it to Claude?

Claude is useful for coding, UI planning, product copy, documentation, and design thinking.

But when you need visual assets, you often leave the AI conversation and search somewhere else.

By connecting SVGIcons as a custom connector, you can ask Claude things like:

Find me a simple SVG icon for a user profile button.

Or:

I am building a SaaS dashboard. Suggest icons for analytics, users, billing, API keys, and settings.

Claude can then use SVGIcons as a source to help you find matching SVG icons without leaving the conversation.

Example use cases

Here are some practical examples.

1. Finding icons for a dashboard

Find SVG icons for a SaaS dashboard sidebar:

  • Home
  • Analytics
  • Customers
  • Billing
  • Settings

This is useful when you are building a UI and want a consistent set of icon ideas quickly.

2. Getting icon suggestions from a feature list

Here are my app features:

  • Team management
  • API access
  • Notifications
  • Reports
  • Security

Suggest matching SVG icons for each feature.

Instead of manually translating features into icon keywords, Claude can help generate better icon search queries.

3. Improving empty states

I need an icon for an empty state where no files have been uploaded yet.

This type of search is more semantic than just typing file icon.

You can ask for the meaning of the state, not only the exact object.

4. Choosing icons for documentation

Find SVG icon ideas for a developer documentation page:

  • Installation
  • Configuration
  • Authentication
  • API Reference
  • Troubleshooting

This can be helpful when creating docs, onboarding pages, or technical landing pages.

Why SVG is still ideal for developers

SVG remains one of the best formats for UI icons because it is:

  • scalable without losing quality
  • text-based
  • easy to inline in HTML
  • styleable with CSS
  • scriptable when needed
  • usually lightweight for interface graphics

For web interfaces, SVG icons are still one of the most flexible options.

You can use them in:

<img src="/icons/settings.svg" alt="Settings">

Enter fullscreen mode Exit fullscreen mode

Or inline them directly:

<button class="icon-button" aria-label="Settings">
  <svg viewBox="0 0 24 24" width="24" height="24" aria-hidden="true">
    <!-- SVG paths here -->
  </svg>
</button>

Enter fullscreen mode Exit fullscreen mode

Inline SVG is especially useful when you want to control color, size, hover states, or animation from CSS.

A better workflow

The main benefit is not just faster search.

It is keeping your workflow in one place.

Instead of switching between:

  • your code editor
  • Claude
  • an icon website
  • your browser tabs
  • your design system

You can stay in the AI conversation and ask for icon ideas in context.

For example:

I am creating a pricing page for a developer tool.
Find SVG icons for these sections:

  • Free plan
  • Pro plan
  • Enterprise plan
  • Support
  • Security

Claude already understands the context, so the icon suggestions can be more relevant.

Tips for better icon prompts

When searching icons through Claude, be specific.

Instead of:

Find an icon for app.

Try:

Find a minimal outline SVG icon for a desktop application launcher.

Instead of:

Find a user icon.

Try:

Find a simple monochrome SVG icon for user account settings.

Good prompts usually include:

  • the object
  • the visual style
  • the usage context
  • the desired tone

Examples:

Find a thin outline SVG icon for cloud sync in a developer dashboard.

Find a simple filled SVG icon for an export button.

Find a clean SVG icon for API authentication.

When this is useful

This workflow is especially useful if you are:

  • building SaaS dashboards
  • designing landing pages
  • creating documentation
  • prototyping UI screens
  • generating app menus
  • building design systems
  • creating icon-based feature sections

It is also useful when you know what an icon should communicate, but you do not know the best keyword to search for.

Try it

You can explore the SVG icon search engine here:

https://svgicons.com/svg-icon-search-engine

And if you use Claude, you can connect SVGIcons as a custom connector to search icons directly from your AI workflow.

Final thoughts

Icons are small, but they matter.

They improve navigation, make interfaces easier to scan, and help users understand actions faster.

By connecting SVGIcons to Claude, icon search becomes part of your development workflow instead of a separate interruption.

That is the idea: fewer context switches, faster UI decisions, and better SVG icon discovery for developers.