Convert Figma logo to code with AI

lobehub logolobe-icons

🥨 Lobe Icons - Brings AI/LLM brand logos to your React & React Native apps — static SVG/PNG/WebP, no dependencies.

1,452
144
1,452
40

Top Related Projects

A set of over 5900 free MIT-licensed high-quality SVG icons for you to use in your web projects.

25,813

Simply beautiful open-source icons

A scalable set of icons handcrafted with ❤️ by GitHub

17,988

Premium hand-crafted icons built by Ionic, for Ionic apps and web apps everywhere 🌎

The iconic SVG, font, and CSS toolkit

SVG icons for popular brands

Quick Overview

The lobehub/lobe-icons repository is a collection of open-source icons designed for the Lobe AI platform. These icons are intended to be used in various Lobe-related projects and applications.

Pros

  • Comprehensive Icon Set: The repository provides a wide range of icons covering various categories, making it a valuable resource for Lobe-based projects.
  • Open-Source: The icons are licensed under the MIT license, allowing for free use, modification, and distribution.
  • Consistent Design: The icons follow a cohesive design style, ensuring a visually harmonious experience across Lobe-related applications.
  • Active Maintenance: The repository is actively maintained, with new icons being added and existing ones being updated regularly.

Cons

  • Limited to Lobe-Specific Use: The icons are primarily designed for the Lobe AI platform and may not be suitable for use in non-Lobe-related projects.
  • Potential Compatibility Issues: As the icons are designed for Lobe, they may not seamlessly integrate with other design systems or UI frameworks without additional customization.
  • Lack of Detailed Documentation: The repository could benefit from more comprehensive documentation, including guidelines for usage, integration, and contribution.
  • Limited Customization Options: The icons are provided in a fixed set of styles and formats, which may limit the ability to customize them to fit specific design needs.

Code Examples

Since this repository is a collection of icons and not a code library, there are no code examples to provide.

Getting Started

To use the Lobe icons in your project, follow these steps:

  1. Clone the lobehub/lobe-icons repository to your local machine:
git clone https://github.com/lobehub/lobe-icons.git
  1. Navigate to the cloned repository:
cd lobe-icons
  1. Explore the available icons in the icons directory. Each icon is provided in various file formats, including SVG, PNG, and EPS.

  2. To use an icon in your project, simply copy the desired file and include it in your codebase or design assets.

  3. Refer to the repository's README file for additional information on the icon categories, naming conventions, and usage guidelines.

Competitor Comparisons

A set of over 5900 free MIT-licensed high-quality SVG icons for you to use in your web projects.

Pros of Tabler Icons

  • Larger icon set with over 4,200 icons
  • More established project with higher GitHub stars (16.5k vs 200+)
  • Offers multiple file formats (SVG, React, Vue, etc.)

Cons of Tabler Icons

  • Less focused on AI and tech-specific icons
  • May have more unnecessary icons for specific use cases
  • Potentially slower updates due to larger icon set

Code Comparison

Tabler Icons (React):

import { IconHome } from '@tabler/icons-react';

function App() {
  return <IconHome size={24} color="blue" />;
}

Lobe Icons (React):

import { Home } from '@lobehub/icons';

function App() {
  return <Home size={24} color="blue" />;
}

Both libraries offer similar usage patterns for React components, with minor differences in import statements and component names. Tabler Icons uses the "Icon" prefix for its components, while Lobe Icons uses the icon name directly.

25,813

Simply beautiful open-source icons

Pros of Feather

  • Larger icon set with over 280 icons compared to Lobe Icons' 130+
  • More established project with a longer history and larger community
  • Supports multiple formats including SVG, React, and Vue components

Cons of Feather

  • Less frequent updates compared to Lobe Icons
  • Limited customization options for icon styles
  • Lacks some modern design trends and AI-related icons found in Lobe Icons

Code Comparison

Feather (React):

import { Camera } from 'react-feather';

const MyComponent = () => (
  <Camera color="red" size={48} />
);

Lobe Icons (React):

import { Camera } from '@lobehub/icons';

const MyComponent = () => (
  <Camera size="large" color="red" />
);

Both libraries offer similar usage patterns, with minor differences in prop naming and available customization options. Feather uses numeric sizes, while Lobe Icons uses predefined size categories.

A scalable set of icons handcrafted with ❤️ by GitHub

Pros of Octicons

  • Larger and more established icon set with a longer history
  • Officially maintained by GitHub, ensuring consistency with their platform
  • Extensive documentation and usage guidelines

Cons of Octicons

  • More focused on GitHub-specific use cases, potentially limiting versatility
  • Less frequent updates compared to Lobe Icons
  • Heavier package size due to the extensive icon set

Code Comparison

Octicons usage:

import { MarkGithubIcon } from '@primer/octicons-react'

function App() {
  return <MarkGithubIcon size={24} />
}

Lobe Icons usage:

import { GithubFill } from '@lobehub/icons'

function App() {
  return <GithubFill size={24} />
}

Both libraries offer similar ease of use in React applications, with straightforward import and implementation. The main difference lies in the naming conventions and the specific icons available in each set.

Octicons provides a more comprehensive set of GitHub-related icons, while Lobe Icons offers a broader range of general-purpose icons with a modern design aesthetic. The choice between the two depends on the specific needs of the project and the desired visual style.

17,988

Premium hand-crafted icons built by Ionic, for Ionic apps and web apps everywhere 🌎

Pros of Ionicons

  • Larger icon set with over 1,300 icons
  • Longer development history and more established community
  • Supports multiple file formats (SVG, WebFont, PNG)

Cons of Ionicons

  • Larger file size due to extensive icon set
  • May require more setup for custom usage
  • Less focused on modern design trends

Code Comparison

Ionicons usage:

<ion-icon name="heart"></ion-icon>

Lobe Icons usage:

import { HeartIcon } from '@lobehub/icons'

<HeartIcon />

Summary

Ionicons offers a comprehensive icon set with broad format support, making it suitable for various projects. However, its large size and potentially complex setup may be drawbacks for some users. Lobe Icons, while newer and with a smaller icon set, focuses on modern design trends and offers simpler React integration. The choice between the two depends on project requirements, with Ionicons being more versatile and Lobe Icons being more streamlined for React applications.

The iconic SVG, font, and CSS toolkit

Pros of Font-Awesome

  • Extensive icon library with over 7,000 icons
  • Well-established and widely adopted in web development
  • Supports multiple file formats (SVG, webfonts, etc.)

Cons of Font-Awesome

  • Larger file size due to comprehensive icon set
  • Some advanced features require a paid Pro version
  • Less focused on modern, minimalist design trends

Code Comparison

Font-Awesome (HTML):

<i class="fas fa-user"></i>

Lobe-icons (React):

import { User } from '@lobehub/icons'

<User />

Key Differences

  • Lobe-icons focuses on AI and technology-related icons, while Font-Awesome offers a broader range of icons
  • Lobe-icons is designed specifically for React applications, whereas Font-Awesome is more versatile across different frameworks
  • Font-Awesome has a longer history and larger community, while Lobe-icons is newer and more niche-focused

Use Cases

Font-Awesome is ideal for:

  • General-purpose web development projects
  • Applications requiring a wide variety of icon styles

Lobe-icons is better suited for:

  • React-based AI and tech-focused applications
  • Projects needing a modern, minimalist icon set

SVG icons for popular brands

Pros of Simple Icons

  • Larger collection with over 2,000 brand icons
  • Longer project history and more established community
  • Provides multiple file formats (SVG, PDF, EPS)

Cons of Simple Icons

  • Limited to brand/company logos only
  • Less customization options for icon styles
  • Slower release cycle for new icons

Code Comparison

Simple Icons usage:

<img src="https://simpleicons.org/icons/github.svg" alt="GitHub Icon">

Lobe Icons usage:

import { GithubIcon } from '@lobehub/icons'

<GithubIcon size={24} />

Key Differences

  • Lobe Icons focuses on AI and tech-related icons, while Simple Icons covers a broader range of brands
  • Lobe Icons offers React components for easy integration, Simple Icons provides static files
  • Lobe Icons allows for more customization (size, color) through props
  • Simple Icons has a larger collection but slower updates, Lobe Icons is smaller but more frequently updated

Use Cases

  • Choose Simple Icons for projects requiring a wide variety of brand logos
  • Opt for Lobe Icons in React-based projects, especially those focused on AI and technology themes

Community and Support

  • Simple Icons has a larger community and more contributors
  • Lobe Icons, being newer, has a smaller but growing community

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Lobe Icons

Popular AI / LLM Model Brand SVG Logo and Icon Collection. See them all on one page at lobehub.com/icons.
Contributions, corrections & requests can be made on GitHub.

Documents · Changelog · Report Bug · Request Feature

Lobe Icons - A Collection of AI Company  / LLM Model Logo | Product Hunt



Table of contents

TOC

📦 Packages

LogoPackageVersionDownloadsLinks
React logo@lobehub/iconsnpmNPM DownloadsSource
React Native logo@lobehub/icons-rnnpmNPM DownloadsSource
SVG logo@lobehub/icons-static-svgnpmNPM DownloadsSource
PNG logo@lobehub/icons-static-pngnpmNPM DownloadsSource
WebP logo@lobehub/icons-static-webpnpmNPM DownloadsSource

✨ Features

  • 🚀 Lightweight & Scalable: Icons are designed to be lightweight, utilizing highly optimized scalable vector graphics (SVG) for the best performance and quality.
  • 🌳 Tree Shakable: The collection is tree-shakable, ensuring that you only import the icons that you use, which helps in reducing the overall bundle size of your project.
  • 👥 Active Community: Lobe Icons boasts an active community of designers and developers. Engage with us on platforms like GitHub and Discord to contribute or get support.

Supported brands:

ModelProviderApplication

Ai2

01.AI (零一万物)

11x

Ai21Labs (Jamba)

302.AI

Adobe

AionLabs

AI Studio (Google)

AG-UI

Arcee

Ai360 (360 智脑)

Automatic1111 (SD Webui)

AssemblyAI

AiHubMix (推理时代)

CapCut

Aya (Cohere)

AiMass (紫东太初)

Cline

BAAI (智源研究院)

AkashChat

Clipdrop

Baichuan (百川)

AlephAlpha

CodeFlicker

Bilibili Index (Index Team)

Alibaba

Colab (Google)

ChatGLM (智谱)

AlibabaCloud (阿里云)

ComfyUI

Claude

AntGroup

CopilotKit

CodeGeeX

Anthropic

Coqui

CogVideo

Anyscale

Coze

CogView

Apple

CrewAI

CommandA (Cohere)

AtlasCloud

Cursor

DALL·E (OpenAI)

AWS

CyberCut

DBRX (Databricks)

AzureAI

DeepAI

Deep Cogito

Baidu

DeepL

DeepSeek

BaiduCloud (百度智能云)

Dify

Dolphin (dphnAI)

Bailian (阿里云百炼)

Doc2X

Doubao (豆包)

Baseten

DocSearch

ElevenLabs

Bedrock (AWS)

DreamMachine (Luma)

Essential AI

Bilibili (哔哩哔哩)

FastGPT

FishAudio (Bert)

Black Forest Labs (bfl)

Figma

Flux (black forest labs)

BurnCloud

Firefly (Adobe)

Gemini (Google)

ByteDance

Flora

Gemma (Google)

CentML

Flowith

GLM-V

Cerebras

Github Copilot

Grok (xAI)

Civitai

Glama

Hunyuan (腾讯混元)

Cloudflare

Glif

Inception Labs

Cohere

Goose (codename)

Inflection

Comet API

Gradio

Kolors (快手可图)

Crusoe

Greptile

KwaiKAT (KAT-Coder)

DeepInfra

Hailuo (海螺)

Kwaipilot

DeepMind (Google)

Haiper

Liquid

Exa

Hedra

LLaVA

Fal

Ideogram

LongCat

Featherless.ai

Jimeng (即梦)

Magic

Fireworks

Kimi

Minimax

Friendli

Kling (可灵)

Mistral

GiteeAI

Krea

Morph

Github

LangChain

Nova (AWS)

Google

Langfuse

OpenChat

GoogleCloud

LangGraph (LangChain)

PaLM (Google)

Groq

LangSmith (LangChain)

Phind

Higress

Lightricks

Qwen (千问)

Huawei

LiveKit

Relace

HuaweiCloud (华为云)

LlamaIndex

RWKV

HuggingFace

Lovable

SenseNova (商汤)

Hyperbolic

Lovart

Skywork (天工)

IBM (Granite)

Luma

Sora (OpenAI)

IFlyTekCloud (讯飞开放平台)

Make

Spark (讯飞星火)

Inference

Manus

Stepfun (阶跃星辰)

Infermatic

Mastra

Voyage

Infinigence (无问芯穹)

MCP (Model Context Protocol)

Wenxin (文心)

InternLM

MCP.so

Xiaomi MiMo

Jina AI

MetaAI

Xuanyuan (度小满轩辕)

Kluster

MetaGPT

Yi (零一万物)

Lambda

Microsoft Bing

LeptonAI

Microsoft Copilot

LG AI (KMMLU/EXAONE)

Midjourney

LM Studio

Monica

LobeHub

MyShell

MENLO (Lucy/Jan-nano)

n8n

Meta

NotebookLM

Microsoft

Notion

Microsoft Azure

NovelAI

ModelScope (魔搭)

OpenClaw (Moltbot/Clawbot)

Moonshot (月之暗面)

OpenWebUI

Nebius

Phidata

New API

Pika

NousResearch (Hermes)

PixVerse

Novita

Player2

NPLCloud

Poe

Nvidia (Nemotron)

Pollinations

Ollama

PydanticAI

OpenAI (ChatGPT)

Qingyan (智谱清言)

OpenRouter

Railway

Parasail

Recraft

Perplexity

Replit

PPIO

RSSHub

Qiniu (七牛云)

Runway

Replicate

Smithery

SambaNova

Suno

Search1API

Sync

SearchApi

Tavily

SiliconCloud (SiliconFlow)

Tiangong (天工)

Snowflake

TopazLabs

SophNet

TRAE

Stability (StableDiffusion)

Tripo

StateCloud (天翼云)

TuriX

Straico

Udio

StreamLake

Unstructured

SubModel

V0 (Vercel)

Targon

Vectorizer.AI

Technology Innovation Institute (Falcon)

Vidu

Tencent

Viggle

TencentCloud (腾讯云)

Windsurf

together.ai

YouMind

Upstage

Yuanbao (腾讯元宝)

Vercel

Z.ai

VertexAI (Google)

Zapier

vLLM

Zeabur

Volcengine (火山引擎)

WorkersAI (Cloudflare)

xAI

Xinference

Yandex

ZenMux

Zhipu (智谱)

[!TIP]
More brands are being added, and PR welcome.

🤯 CDN Usage

Icons can be served from a CDN such as unpkg or npmmirror (aliyun). Simply use the lobe icons npm package and specify a version in the URL like the following:

A CDN with SVG

We provide a CDN service (@lobehub/icons-static-svg) which allows you to use SVG.

<!--UNPKG-->
<img height="64" src="https://unpkg.com/@lobehub/icons-static-svg@latest/icons/[ICON SLUG].svg" />

<!--ALIYUN-->
<img
  height="64"
  src="https://registry.npmmirror.com/@lobehub/icons-static-svg/latest/files/icons/[ICON SLUG].svg"
/>

Example

<!--UNPKG-->
<img height="64" src="https://unpkg.com/@lobehub/icons-static-svg@latest/icons/openai.svg" />

<!--ALIYUN-->
<img
  height="64"
  src="https://registry.npmmirror.com/@lobehub/icons-static-svg/latest/files/icons/openai.svg"
/>
<!--UNPKG-->
<img height="64" src="https://unpkg.com/@lobehub/icons-static-svg@latest/icons/openai-text.svg" />

<!--ALIYUN-->
<img
  height="64"
  src="https://registry.npmmirror.com/@lobehub/icons-static-svg/latest/files/icons/openai-text.svg"
/>

B CDN with PNG

We provide a CDN service (@lobehub/icons-static-png) which allows you to use PNG.

<!--UNPKG-->
<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="https://unpkg.com/@lobehub/icons-static-png@latest/dark/[ICON SLUG].png"
  />
  <img height="64" src="https://unpkg.com/@lobehub/icons-static-png@latest/light/[ICON SLUG].png" />
</picture>

<!--ALIYUN-->
<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="https://registry.npmmirror.com/@lobehub/icons-static-png/latest/files/dark/[ICON SLUG].png"
  />
  <img
    height="64"
    src="https://registry.npmmirror.com/@lobehub/icons-static-png/latest/files/light/[ICON SLUG].png"
  />
</picture>

Example

<!--UNPKG-->
<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="https://unpkg.com/@lobehub/icons-static-png@latest/dark/openai.png"
  />
  <img height="64" src="https://unpkg.com/@lobehub/icons-static-png@latest/light/openai.png" />
</picture>

<!--ALIYUN-->
<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="https://registry.npmmirror.com/@lobehub/icons-static-png/latest/files/dark/openai.png"
  />
  <img
    height="64"
    src="https://registry.npmmirror.com/@lobehub/icons-static-png/latest/files/light/openai.png"
  />
</picture>
<!--UNPKG-->
<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="https://unpkg.com/@lobehub/icons-static-png@latest/dark/openai-text.png"
  />
  <img height="64" src="https://unpkg.com/@lobehub/icons-static-png@latest/light/openai-text.png" />
</picture>

<!--ALIYUN-->
<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="
      https://registry.npmmirror.com/@lobehub/icons-static-png/latest/files/dark/openai-text.png
    "
  />
  <img
    height="64"
    src="https://registry.npmmirror.com/@lobehub/icons-static-png/latest/files/light/openai-text.png"
  />
</picture>

C CDN with WEBP

We provide a CDN service (@lobehub/icons-static-webp) which allows you to use WEBP.

<!--UNPKG-->
<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="https://unpkg.com/@lobehub/icons-static-webp@latest/dark/[ICON SLUG].webp"
  />
  <img
    height="64"
    src="https://unpkg.com/@lobehub/icons-static-webp@latest/light/[ICON SLUG].webp"
  />
</picture>

<!--ALIYUN-->
<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="https://registry.npmmirror.com/@lobehub/icons-static-webp/latest/files/dark/[ICON SLUG].webp"
  />
  <img
    height="64"
    src="https://registry.npmmirror.com/@lobehub/icons-static-webp/latest/files/light/[ICON SLUG].webp"
  />
</picture>

Example

<!--UNPKG-->
<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="https://unpkg.com/@lobehub/icons-static-webp@latest/dark/openai.webp"
  />
  <img height="64" src="https://unpkg.com/@lobehub/icons-static-webp@latest/light/openai.webp" />
</picture>

<!--ALIYUN-->
<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="https://registry.npmmirror.com/@lobehub/icons-static-webp/latest/files/dark/openai.webp"
  />
  <img
    height="64"
    src="https://registry.npmmirror.com/@lobehub/icons-static-webp/latest/files/light/openai.webp"
  />
</picture>
<!--UNPKG-->
<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="https://unpkg.com/@lobehub/icons-static-webp@latest/dark/openai-text.webp"
  />
  <img
    height="64"
    src="https://unpkg.com/@lobehub/icons-static-webp@latest/light/openai-text.webp"
  />
</picture>

<!--ALIYUN-->
<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="
      https://registry.npmmirror.com/@lobehub/icons-static-webp/latest/files/dark/openai-text.webp
    "
  />
  <img
    height="64"
    src="https://registry.npmmirror.com/@lobehub/icons-static-webp/latest/files/light/openai-text.webp"
  />
</picture>

Static Packages

PackageFileTypeVersion
@lobehub/icons-static-svgSVG
@lobehub/icons-static-pngPNG
@lobehub/icons-static-webpWEBP

📦 Installation

[!IMPORTANT]
This package is ESM only.

To install Lobe UI, run the following command:

$ bun add @lobehub/icons

Compile with NextJS

[!NOTE]
By work correct with nextjs ssr, add transpilePackages: ['@lobehub/icons'] to next.config.js. For example:

// next.config.js
const nextConfig = {
  // ...other config

  transpilePackages: ['@lobehub/icons'],
};

⌨️ Local Development

You can use Github Codespaces for online development:

Or clone it for local development:

$ git clone https://github.com/lobehub/lobe-icons.git
$ cd lobe-icons
$ bun install
$ bun start

🤝 Contributing

Contributions of all types are more than welcome, if you are interested in contributing code, feel free to check out our GitHub Issues to get stuck in to show us what you’re made of.

🩷 Sponsor

Every bit counts and your one-time donation sparkles in our galaxy of support! You're a shooting star, making a swift and bright impact on our journey. Thank you for believing in us – your generosity guides us toward our mission, one brilliant flash at a time.

🔗 Links

More Products

  • 🤯 Lobe Chat - An open-source, extensible (Function Calling), high-performance chatbot framework. It supports one-click free deployment of your private ChatGPT/LLM web application.
  • 🅰️ Lobe Theme - The modern theme for stable diffusion webui, exquisite interface design, highly customizable UI, and efficiency boosting features.
  • 🧸 Lobe Vidol - Experience the magic of virtual idol creation with Lobe Vidol, enjoy the elegance of our Exquisite UI Design, dance along using MMD Dance Support, and engage in Smooth Conversations.

Design Resources

Development Resources

  • 🎤 Lobe TTS - A high-quality & reliable TTS/STT library for Server and Browser
  • 🌏 Lobe i18n - Automation ai tool for the i18n (internationalization) translation process.

More Resources


📝 License

Copyright © 2023 LobeHub.
This project is MIT licensed.

NPM DownloadsLast 30 Days