3.0.4 • Published 3 years ago
semperis-assets v3.0.4
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:
Clone the repo
git clone https://semperis.visualstudio.com/Identity%20Protection/_git/semperis-ux-assets
Install NPM packages
npm install
Run server to see all the icons in your browser
npm run serve
Usage
- 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>
Use in scss file example:
@import 'semperis-assets/scss/filled/user.scss'; .btn{ background-image: user(#FF2843); }