3.0.4 • Published 2 years ago

semperis-assets v3.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

About The Project

This package gives the ability to get all semperis icons from the ui/ux library You can import the icons as svg files, base64 format and use them in your scss files

Built With

Getting Started

Installation

Install the latest version using:

  1. Clone the repo

    git clone https://semperis.visualstudio.com/Identity%20Protection/_git/semperis-ux-assets 
  2. Install NPM packages

    npm install
  3. Run server to see all the icons in your browser

    npm run serve

Usage

  1. Get Svg icon example:
    import {$user} from 'semperis-assets/base64/filled'
2. Get base64 icon example:

```js
  <template>
     <div 
         class="container"> 
         <img class="imgCard" :src="$SempColor.data"/>
     </div>
   </template>

   <script>
    import {$SempColor} from 'semperis-assets/base64/brand'
    
   </script>
  1. Use in scss file example:

    @import 'semperis-assets/scss/filled/user.scss';
    
    .btn{
        background-image: user(#FF2843);
        }