Bootstrap Icons
wovoui-icons are imported
from Bootstrap 5 icons. There are almost 1522 icons.
And in the future, if Bootstrap provides some more icons, those will be available too as soon as possible.
wovoui-icons are wrapped in a separate package so that it's dependency can
be optional.
Getting Started
Of-course You can use the icons using the provided methods of Bootstrap 5. For example,
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css">
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css");
import "bootstrap-icons"
Installation
Using NPM
npm install @wovosoft/wovoui-icons
Using yarn
yarn add @wovosoft/wovoui-icons
How to Use
<template>
<Activity :size="5"/>
<Alarm :size="5"/>
</template>
<script>
import {Activity, Alarm} from "@wovosoft/wovoui-icons";
export default {
components: {Activity, Alarm}
}
</script>
Top comments (0)