icons icon indicating copy to clipboard operation
icons copied to clipboard

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

Open ertl opened this issue 10 months ago • 0 comments

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

ertl avatar Apr 12 '24 05:04 ertl