1.0.0 • Published 8 years ago

aricma-icons v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
8 years ago

aricma-icons

A npm package to hold all the <icons>.svg I need for aricma projects.

In this package you will find a lot of possible icons exported as React JXS components.

To get started

  1. Add the package to your project. npm install --save aricma-icons

  2. Require it. const { <ANY_COMPONENT_ICON_YOU_WANT_TO_USE> } = require('aricma-icons'); import { <ANY_COMPONENT_ICON_YOU_WANT_TO_USE> } from 'aricma-icons

  3. Use the component.

class <YOUR_COMPONENT> extneds Component{
  render() {
    return(
      <div>
        <ICON scale='30px' color='var(--your-theme-color)' />
      <div>
    )
  }
}

List of all icons

export {
  TrashCan, // props = { color, scale }
  HomeHouse, // props = { color, scale }
  CashStation, // props = { color, scale }
  UserIcon, // props = { color, scale }
  Shop, // props = { color, scale }
  WavedAccountingSheet, // props = { color, scale}
  ValidationIcons, // props = { color, scale, validation }
  CashFlowIcons, // props = { color, scale }
  CircledArrow, // props = { color, scale, direction, filled}
  Map, // props = { color, scale }
  Phone, // props = { color, scale }
  Mail, // props = { color, scale }
  SocialMedia, // props = { color, scale , media }
  CroissantAndCoffee, // props = { color, scale }
  EspressoMaschine, // props = { color, scale, maschine }
  Emoji, // props = { color, scale, emoji }
  Job, // props = { color, scale }
  SearchIcon, // props = { color, scale }
  Basket, // props = { color, scale }
  Box, // props = { color, scale }
}
1.0.0

8 years ago