1.0.0 • Published 8 years ago
aricma-icons v1.0.0
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
Add the package to your project.
npm install --save aricma-icons
Require it.
const { <ANY_COMPONENT_ICON_YOU_WANT_TO_USE> } = require('aricma-icons');
import { <ANY_COMPONENT_ICON_YOU_WANT_TO_USE> } from 'aricma-icons
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