Skip to content

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

@ertl

Description

@ertl

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions