https://github.com/limit-zero/ember-entypo
🔣 Adds Entypo icons/fonts to Ember.
https://github.com/limit-zero/ember-entypo
Last synced: 4 days ago
JSON representation
🔣 Adds Entypo icons/fonts to Ember.
- Host: GitHub
- URL: https://github.com/limit-zero/ember-entypo
- Owner: limit-zero
- License: mit
- Created: 2018-04-13T15:17:54.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-16T16:41:30.000Z (about 8 years ago)
- Last Synced: 2025-10-05T01:51:24.840Z (9 months ago)
- Language: JavaScript
- Homepage: https://limit-zero.github.io/ember-entypo/
- Size: 1.3 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Entypo+ Font Icons for EmberJS
==============================================================================
🔣 Adds Entypo+ icons/fonts to Ember. This is merely a font wrapper addon for the [411 carefully crafted premium pictograms by Daniel Bruce — CC BY-SA 4.0](http://www.entypo.com).
Installation
------------------------------------------------------------------------------
```
ember install ember-entypo
```
Usage
------------------------------------------------------------------------------
To use, simply call the component with the icon you'd like to display. For example, to display the user icon:
```
{{entypo-icon "user"}} Hello, User!
```
[**View the complete list of icons with examples**](https://limit-zero.github.io/ember-entypo/)
The icons are rendered as `span` elements, classed with `entypo icon-[icon-name]`. To change the element tag name, simply set the `tagName` property when calling the component (just like any other Ember component).
For example, to use an `` element (along with some custom class names), you would use `{{entypo-icon tagName="i" class="custom-class1 custom-class2" "user"}}`.
The CSS targets `.entypo.icon-[icon-name]`, so this addon should _not_ conflict with other icon libraries.
Contributing
------------------------------------------------------------------------------
### Installation
* `git clone `
* `cd ember-entypo`
* `yarn install`
### Linting
* `yarn lint:js`
* `yarn lint:js --fix`
### Running tests
* `ember test` – Runs the test suite on the current Ember version
* `ember test --server` – Runs the test suite in "watch mode"
* `ember try:each` – Runs the test suite against multiple Ember versions
### Running the dummy application
* `ember serve`
* Visit the dummy application at [http://localhost:4200](http://localhost:4200).
For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/).
License
------------------------------------------------------------------------------
This project is licensed under the [MIT License](LICENSE.md).