Icons
We use Iconify for our icons. You can find the list of icons here.
Iconify is a set of tools for developers and designers, created to make it easy to work with different icon sets in a consistent way.
It includes:
- Tools for importing, exporting and organising icons.
- Over 200k icons from more than 150 open source icon sets, all cleaned up, optimised and kept up to date.
- Components for various frameworks that work with that icon data.
- Plugins for UI developers.
- Public API to browse, search icon sets and retrieve icon data. It also generates SVG and CSS on demand.
Installation
bash
# npm
npm install @iconify/vue
# yarn
yarn add @iconify/vue
Usage in Boot File
javascript
import { boot } from 'quasar/wrappers'
import { Icon } from '@iconify/vue';
export default boot(({ app }) => {
app.component('Icon', Icon)
})
Usage in Component
vue
<template>
<Icon icon="tabler:phone"/>
</template>