0.1.4 • Published 6 months ago

btn-kit v0.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

npm GitHub package version NPM Downloads

Install

yarn add btn-kit

Import

import AppButton from "btn-kit";
import "btn-kit/dist/index.css";

app.component("AppButton", AppButton);

Usage

<template>
  <AppButton theme="awesome" size="md">
    <span class="label">Text</span>
  </AppButton>
</template>

<style lang="scss">
.btn--theme {
  &-awesome {
    --bk-background-h: 180;
    --bk-background-s: 100%;
    --bk-background-l: 25%;
    --bk-color-h: 0;
    --bk-color-s: 0%;
    --bk-color-l: 90%;
  }
}
</style>

License

btn-kit is released under MIT license