0.0.6 • Published 5 years ago

as-button v0.0.6

Weekly downloads
16
License
-
Repository
github
Last release
5 years ago

AsButton

The AsButton library exported as angular modules. Required angular version 2+.

alt text

Installation

Using npm:

$ npm i as-button --save

Example

// app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AsButtonModule } from 'as-button'; //<< Add this

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    AsButtonModule //<< Add this
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
<!-- my-component.html -->
<h3>Link Button</h3>
<as-button 
    link="https://thedroid.io"
    value="Button With Link"
    bgColor="#3F51B5"
    color="#fff"
    shadow="2"
    fontSize="14px"
    borderRadius="10"
    padding="10,15"
></as-button>

<h3>Simple Button</h3>
<as-button 
    value="Simple Button"
    bgColor="#3F51B5"
    color="#fff"
    shadow="2"
    fontSize="14px"
    borderRadius="10"
    padding="10,15"
></as-button>
0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

6 years ago

0.0.1

6 years ago

0.0.0

6 years ago