I am attempting to utilize the standard window-close icon from vue-awesome. I have imported my vue-awesome using the following code:
import 'vue-awesome/icons';
import Icon from 'vue-awesome/components/Icon.vue';
Vue.component('icon', Icon);
Referring to the documentation found here https://github.com/Justineo/vue-awesome#usage , I am able to import using:
<icon name="window-close"></icon>
However, this results in the solid icon being displayed. Instead of the solid icon, I want to display the regular one. According to their documentation, it should be done like this:
<icon name="regular/window-close"></icon>
but when I try this approach, it gives me the error shown below:
https://i.sstatic.net/SndgB.png
Is there a way to implement the regular icon from vue-awesome?