I use the heroicons (https://heroicons.com/) in my navigation.
How do i switch between BookmarkIcon, if i want to use the solid and outline version in the same component?
For the standard layout, i want to use the outline version of heroicons.
import { BookmarkIcon } from "@heroicons/vue/24/outline"
When i the navigation item is active, i want to use the solid version of heroicons.
import { BookmarkIcon } from "@heroicons/vue/24/solid"
How i can use both, when both has to implemented with the same name?