gabrielgrant / qwikest-icons

Include popular icons easily in your Qwik projects with @qwikest/icons πŸš€

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Qwik Icons

Include popular icons easily in your Qwik projects with @qwikest/icons πŸš€

Currently included libraries (with icon prefix):

Installation

Simply install the package with your package manager of choice:

npm i @qwikest/icons
yarn add @qwikest/icons
pnpm add @qwikest/icons

Usage

If you want to, you can also directly start playing around with the package in this code sandbox – no setup needed πŸ‘€

import { LuRocket } from "@qwikest/icons/lucide";

export const MyComponent = component$(() => {
  // Icon size and color are inherited by default ⬇️
  return (
    <div style={{ color: "red", fontSize: "40px" }}>
      <LuRocket />
    </div>
  );
});

Available Libraries

import { Bs1Circle } from "@qwikest/icons/bootstrap";
import { HiAcademicCapMini } from "@qwikest/icons/heroicons";
import { In1StMedal } from "@qwikest/icons/iconoir";
import { IoAirplaneOutline } from "@qwikest/icons/ionicons";
import { LuRocket } from "@qwikest/icons/lucide";
import { MoAdd } from "@qwikest/icons/monoicons";
import { GoFlame24 } from "@qwikest/icons/octicons";
import { Si1Password } from "@qwikest/icons/simpleicons";
import { Tb123 } from "@qwikest/icons/tablericons";

Missing a library? Feel free to open an issue or even a MR 🀝

Upcoming

  • πŸ–ŒοΈ Configurable stroke width for supported packages
  • 🎁 Additional icon libraries
  • 🎨 Built-in company based colors for simple icons

About

Include popular icons easily in your Qwik projects with @qwikest/icons πŸš€

License:Other


Languages

Language:TypeScript 92.7%Language:JavaScript 4.6%Language:CSS 2.7%