• Stars
    star
    151
  • Rank 246,057 (Top 5 %)
  • Language
  • License
    MIT License
  • Created over 1 year ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Free and open-source collection of SVG icons built for Flowbite and Tailwind CSS

Flowbite Icons - Free and open-source SVG icons
Free and open-source collection of over 430+ SVG icons built for Tailwind CSS and Figma

Discord Licenese

Getting started

The quickest way of you can start using these icons is by going to the Flowbite Icons page and copy-paste the icons as raw SVG or JSX (React) by selecting the "copy as" option. You can also configure the icon size and stroke width via our custom interface.

Flowbite Icons

Basic usage

The default examples are provided with raw SVG code source which is a flexible and efficient way of integrating icons into your web application regardless of what tech stack you're using.

Here is a solid and outline version of the same notification-bell icon:

<!-- Notification bell solid -->
<svg class="w-6 h-6 text-gray-800 dark:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 14 20">
    <path d="M12.133 10.632v-1.8A5.406 5.406 0 0 0 7.979 3.57.946.946 0 0 0 8 3.464V1.1a1 1 0 0 0-2 0v2.364a.946.946 0 0 0 .021.106 5.406 5.406 0 0 0-4.154 5.262v1.8C1.867 13.018 0 13.614 0 14.807 0 15.4 0 16 .538 16h12.924C14 16 14 15.4 14 14.807c0-1.193-1.867-1.789-1.867-4.175ZM3.823 17a3.453 3.453 0 0 0 6.354 0H3.823Z"/>
</svg>

<!-- Notification bell outline -->
<svg class="w-6 h-6 text-gray-800 dark:text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 21">
    <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 3.464V1.1m0 2.365a5.338 5.338 0 0 1 5.133 5.368v1.8c0 2.386 1.867 2.982 1.867 4.175C15 15.4 15 16 14.462 16H1.538C1 16 1 15.4 1 14.807c0-1.193 1.867-1.789 1.867-4.175v-1.8A5.338 5.338 0 0 1 8 3.464ZM4.54 16a3.48 3.48 0 0 0 6.92 0H4.54Z"/>
</svg>

You can copy and paste this into your project and you can set the color via text-gray-500 dark:text-gray-400 and the size with the Tailwind CSS w-{*} width and h-{*} classes.

JSX format (React)

To start using the icons inside a React or Next.js project you will need to update the attributes to use camelCase format and exchange class with className:

// Notification bell solid JSX
<svg className="w-6 h-6 text-gray-800 dark:text-white" ariaHidden="true" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 14 20">
    <path d="M12.133 10.632v-1.8A5.406 5.406 0 0 0 7.979 3.57.946.946 0 0 0 8 3.464V1.1a1 1 0 0 0-2 0v2.364a.946.946 0 0 0 .021.106 5.406 5.406 0 0 0-4.154 5.262v1.8C1.867 13.018 0 13.614 0 14.807 0 15.4 0 16 .538 16h12.924C14 16 14 15.4 14 14.807c0-1.193-1.867-1.789-1.867-4.175ZM3.823 17a3.453 3.453 0 0 0 6.354 0H3.823Z"/>
</svg>

// Notification bell outline JSX
<svg className="w-6 h-6 text-gray-800 dark:text-white" ariaHidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 21">
    <path stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M8 3.464V1.1m0 2.365a5.338 5.338 0 0 1 5.133 5.368v1.8c0 2.386 1.867 2.982 1.867 4.175C15 15.4 15 16 14.462 16H1.538C1 16 1 15.4 1 14.807c0-1.193 1.867-1.789 1.867-4.175v-1.8A5.338 5.338 0 0 1 8 3.464ZM4.54 16a3.48 3.48 0 0 0 6.92 0H4.54Z"/>
</svg>

You can use our custom interface on Flowbite Icons to select if you want the raw SVG or JSX (React) format and these changes will be applied automatically.

Svelte

Thanks to the open-source community from Svelte - the Flowbite Icons collection is now also available to be used in Svelte projects by installing the official Svelte icons package built by shinokada.

npm i -D flowbite-svelte-icons

Import the icons from the freshly installed package:

<script>
  import { AddressCardSolid } from 'flowbite-svelte-icons';
</script>

<AddressCardSolid />

Learn more about usage by going to the Flowbite Svelte Icons repository on GitHub.

Laravel & Blade support

Thanks to the open-source community you can now also install and use the Flowbite Icons collection inside a Laravel project as Blade components based on the Flowbite Blade Icons repository built by Dominique Thomas.

Installation

composer require ncoo-dev/blade-flowbite-icons

Updating

Please refer to the upgrade guide when updating the library.

Blade Icons

Blade Flowbite Icons uses Blade Icons under the hood. Please refer to the Blade Icons readme for additional functionality. We also recommend to enable icon caching with this library.

Configuration

Blade Flowbite Icons also offers the ability to use features from Blade Icons like default classes, default attributes, etc. If you'd like to configure these, publish the blade-flowbite-icons.php config file:

php artisan vendor:publish --tag=blade-flowbite-icons-config

Usage

Icons can be used as self-closing Blade components which will be compiled to SVG icons:

<x-fbi-outline.general.adjustments-horizontal/>

You can also pass classes to your icon components:

<x-fbi-outline.general.adjustments-horizontal class="w-6 h-6 text-gray-500"/>

And even use inline styles:

<x-fbi-outline.general.adjustments-horizontal style="color: #555"/>

The solid icons can be referenced like this:

<x-fbi-solid.general.adjustments-horizontal/>

Figma support

If you want to use Flowbite Icons inside your Figma project you can duplicate the following file from the community:

🎨 Flowbite Icons in Figma

Flowbite Blocks

Check out Flowbite Blocks to get access to over 330+ website sections coded in Tailwind CSS and Flowbite:

📦 Check out Flowbite Blocks

Pro version

If you want to support this project you can consider purchasing the pro version of Flowbite which includes hundreds of advanced UI components, sections, pages, and a Figma design system:

💎 Check out Flowbite Pro

Community

If you need help or just want to discuss about the library join the community on Github:

⌨️ Discuss about Flowbite on GitHub

For casual chatting with others using the library:

💬 Join the Flowbite Discord Server

Video tutorials and presentations using Flowbite:

🎥 Subscribe to our YouTube channel

Copyright and license

Flowbite Icons is free and open-source under the MIT License.

The "Flowbite name" and logos are trademarks of Bergside Inc.

Authors and credits

More Repositories

1

flowbite

Open-source UI component library and front-end development framework based on Tailwind CSS
HTML
6,463
star
2

volt-bootstrap-5-dashboard

Free and open source Bootstrap 5 Admin Dashboard Template with vanilla Javascript
HTML
2,567
star
3

flowbite-react

Official React components built for Flowbite and Tailwind CSS
TypeScript
1,872
star
4

flowbite-svelte

Official Svelte components built for Flowbite and Tailwind CSS
Svelte
1,722
star
5

flowbite-admin-dashboard

Free and open-source admin dashboard template built with Tailwind CSS and Flowbite
HTML
1,348
star
6

volt-react-dashboard

Free and open source React.js admin dashboard template and UI library based on Bootstrap 5
JavaScript
858
star
7

tailwind-dashboard-windster

Free and open-source admin dashboard interface built on top of Tailwind CSS and Flowbite
HTML
837
star
8

neumorphism-ui-bootstrap

Neumorphism inspired UI Kit: web components, sections and pages in neumorphic style built with Bootstrap CSS Framework
HTML
829
star
9

flowbite-vue

Official Vue 3 components built for Flowbite and Tailwind CSS
Vue
768
star
10

landwind

Responsive and clean landing page built with Tailwind CSS and Flowbite
HTML
602
star
11

flowbite-astro-admin-dashboard

Open-source admin dashboard template built with Astro, Flowbite, and Tailwind CSS
Astro
544
star
12

pixel-bootstrap-ui-kit

Pixel UI Kit - Free and open source Bootstrap 5 UI Kit without jQuery
HTML
530
star
13

windows-95-ui-kit

💾 Windows 95 UI Kit made with Bootstrap 4 components
CSS
464
star
14

glass-ui

CSS UI library based on the glassmorphism design specifications
309
star
15

volt-laravel-dashboard

Free and open-source Laravel admin dashboard interface built with Livewire & Alpine.js based on Bootstrap 5
Blade
283
star
16

flowbite-angular

Official Angular components built for Flowbite and Tailwind CSS
TypeScript
182
star
17

simple-bootstrap-5-dashboard

Simple Bootstrap 5 Admin Dashboard Template
HTML
164
star
18

swipe-one-page-bootstrap-5

👆 Swipe - One Page Bootstrap 5 Template for Mobile Applications
SCSS
162
star
19

flowbite-svelte-admin-dashboard

Free and open-source admin dashboard template built with Flowbite, Svelte, and Tailwind CSS
Svelte
95
star
20

tailwind-landing-page

A responsive landing page built with Tailwind CSS and Flowbite Blocks
HTML
90
star
21

flow-ui

Accessibility oriented design system for developing fast and powerful web interfaces.
89
star
22

flowbite-react-admin-dashboard

A free and open-source admin dashboard interface built with Flowbite, React, and Tailwind CSS
TypeScript
66
star
23

tailwind-figma-ui-kit

FlowBite is a free and open-source set of UI components and pages in Figma built for Tailwind CSS
63
star
24

flowbite-svelte-blocks

Flowbite-Svelte-Blocks components
Svelte
63
star
25

tailwind-flask-starter

Tailwind CSS and Flask starter project with Flowbite included
HTML
52
star
26

tailwind-vue-starter

A free and open-source starter project to help you get started with the core Flowbite Library components and Vue 3
Vue
47
star
27

flowbite-svelte-icons

Official library for the free and open-source collection of over 430+ SVG icons for Flowbite and Svelte
Svelte
41
star
28

tailwind-nuxt-starter

A free and open-source starter project to help you get started with the core Flowbite Library components and Nuxt.js
Vue
39
star
29

gpt-3-tailwindcss

GPT-3 Tailwind CSS Code Generator
37
star
30

flowbite-blazor

Official open-source UI component library for Blazor (.NET), Flowbite and Tailwind CSS
HTML
32
star
31

tailwind-phoenix-starter

Free and open-source starter kit for Phoenix (Elixir), Tailwind CSS and Flowbite
HTML
29
star
32

tailwind-astro-starter

Free and open-source starter project to help you get started with Astro, Tailwind CSS and Flowbite
Astro
23
star
33

flowbite-laravel

PHP
19
star
34

tailwind-css-tutorial

Tailwind CSS Tutorial Project Files
CSS
19
star
35

tailwind-typescript-starter

A free and open-source starter kit that helps you get started with Tailwind CSS, TypeScript and Flowbite
TypeScript
18
star
36

figma-admin-dashboard-template

Free and open-source Figma Admin Dashboard template
16
star
37

tailwind-blazor-starter

Open-source project to get you started with Tailwind CSS, Blazor, and the Flowbite UI components
HTML
14
star
38

simple-gulp-bootstrap-sass-browsersync-boilerplate

Files for the Gulp 4, Bootstrap, Sass and BrowserSync setup tutorial on Themesberg
CSS
14
star
39

bootstrap-5-tutorial

Bootstrap 5 tutorial with Gulp, Sass, BrowserSync, and Vanilla JS
HTML
13
star
40

tailwind-symfony-starter

Free and open-source starter kit for Symfony (PHP), Tailwind CSS and Flowbite
Twig
13
star
41

flowbite-react-icons

Flowbite React Icon library is the official collection of SVG icons, provided freely and as open-source
TypeScript
8
star
42

tailwind-angular-starter

Free and open-source starter project to help you get started with Angular, Tailwind CSS and the Flowbite UI components
HTML
8
star
43

flowbite-snippets

Code snippets from the Flowbite UI component library that you can use inside VS Code
JavaScript
7
star
44

tailwind-solidjs-starter

Free and open-source starter project for SolidJS, Tailwind CSS and Flowbite
JavaScript
6
star
45

th-volt-pro-laravel-admin-dashboard

Fullstack tool featuring Laravel CRUDs, hundreds of UI components and dozens of example pages.
6
star
46

pixel-pro-bootstrap-ui-kit

Official public repository for Pixel Pro Bootstrap UI Kit
6
star
47

flowbite-blade-icons

Official collection of Flowbite SVG icons in Blade
PHP
6
star
48

tailwind-qwik-starter

Open-source starter project for Qwik, Tailwind CSS, and Flowbite
TypeScript
3
star
49

tailwind-gatsby-starter

Free and open-source starter project for Gatsby, Tailwind CSS and Flowbite
JavaScript
3
star
50

flowbite-nuxt-module

Open-source module for Nuxt with auto import for the Flowbite Vue library
TypeScript
3
star
51

th-neumorphism-ui-pro

Neumorphism inspired premium Bootstrap UI Kit
2
star
52

tailwind-remix-starter

Free and open-source starter kit that helps you get started with Tailwind CSS, Remix and Flowbite React
CSS
2
star
53

flowbite-express

Flowbite-Express
EJS
2
star
54

flowbite-phoenix

Official Flowbite UI components built for the Phoenix framework based on Tailwind CSS
Elixir
1
star
55

.github

Ecosystem of open-source projects, libraries and tools built by the team behind Flowbite
1
star
56

flowbite-vue-icons

Official library for the free and open-source collection of over 430+ SVG icons for Flowbite and Vue
1
star