https://github.com/qwikerx/flowbite-qwik-icons
Unofficial library for the free and open-source collection of over 430+ SVG icons for Flowbite and Vue
https://github.com/qwikerx/flowbite-qwik-icons
flowbite flowbite-qwik-icons icon-library qwik qwikjs
Last synced: about 1 year ago
JSON representation
Unofficial library for the free and open-source collection of over 430+ SVG icons for Flowbite and Vue
- Host: GitHub
- URL: https://github.com/qwikerx/flowbite-qwik-icons
- Owner: qwikerx
- Created: 2024-06-06T19:07:59.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-21T18:25:07.000Z (about 1 year ago)
- Last Synced: 2025-04-24T15:25:18.490Z (about 1 year ago)
- Topics: flowbite, flowbite-qwik-icons, icon-library, qwik, qwikjs
- Language: TypeScript
- Homepage:
- Size: 496 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Flowbite Qwik Icon Components
Include popular Flowbite icons easily in your Qwik projects with `flowbite-qwik-icons` 🚀
---
## Installation
Simply install the package with your package manager of choice:
```bash
npm i flowbite-qwik-icons
yarn add flowbite-qwik-icons
pnpm add flowbite-qwik-icons
```
## Usage
Icon size and color are inherited by default
```tsx
import { IconVolumeUpSolid } from 'flowbite-qwik-icons'
export const MyComponent = component$(() => {
return (
)
})
```
Icon can be used as component props
```tsx
import { IconVolumeUpSolid } from 'flowbite-qwik-icons'
export const MyComponent = component$(() => {
return Next
})
```