1.0.19 • Published 3 years ago

keycash-icons v1.0.19

Weekly downloads
34
License
MIT
Repository
-
Last release
3 years ago

Keycash Icons

keycash svg pack of icons

Contains all icons from keycash design system

Install

using npm

npm i keycash-icons

Usage

Global

All resources can be available using Vue.use(plugin).

import Vue from 'vue';
import App from './app.vue';
import keycash_icons from 'keycash-icons';

Vue.use(keycash_icons);

new Vue({
    el: '#app',
    render: h => h(App)
});

Local icon with baseline

Icons can be placed inside KCIconBase component as slots, you can import them separately.

<kc-icon-base width="32" height="32" color="purple"><kc-pilates /></kc-icon-base>
import { KcBaseIcon } from 'keycash-icons';
import { KcPilates } from 'keycash-icons';

export default {
  name: 'App',
  components: {
    KcBaseIcon,
    KcPilates
  }
};

KCIconBase Attributes

AttributeDescriptionTypeDefault
coloricon colorstring--
heighticon heightstring18
widthicon widthstring18

Vuetify integration

The KC icons package can integrate with vuetify just by adding custom icons in plugin.js, all custom icons are packed in the KcIcons module

import Vue from 'vue';
import Vuetify from 'vuetify/lib';
import { KcIcons } from 'keycash-icons';

Vue.use(Vuetify);

export default new Vuetify({
  icons: {
    iconfont: 'mdi',
    values: {
      ...KcIcons
    }
  },
});

For more information vueitfy icons

List of all icons

All icons available can be found in keycash design system

License

MIT

1.0.19

3 years ago

1.0.18

4 years ago

1.0.17

4 years ago

1.0.16

4 years ago

1.0.15

4 years ago

1.0.14

5 years ago

1.0.13

5 years ago

1.0.12

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago