Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
ertl opened this issue Apr 12, 2024 · 0 comments
Open

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

ertl opened this issue Apr 12, 2024 · 0 comments

Comments

@ertl
Copy link

ertl commented Apr 12, 2024

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant