qwikest / icons

Include popular icons easily in your Qwik projects with @qwikest/icons 🚀
Other
79 stars 5 forks source link

Can't Style Bootsrap Icons with qwik version >= 1.5.x #24

Open ertl opened 5 months ago

ertl commented 5 months ago

With qwik version >= 1.5.x it's not possible to style Bootstrap Icons, but Lucide Icons still work

import { component$ } from '@builder.io/qwik';
import { BsPerson } from '@qwikest/icons/bootstrap';
import { LuUser } from '@qwikest/icons/lucide';

export default component$(() => {
  return (
    <div>
      <BsPerson class="size-10 text-orange-500" />
      <LuUser class="size-10 text-orange-500" />
    </div>
  );
});

image

When I use qwik version 1.4.5 it works

image