icons
icons copied to clipboard
Can't Style Bootsrap Icons with qwik version >= 1.5.x
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>
);
});
When I use qwik version 1.4.5 it works