2.0.0 • Published 1 year ago

ember-mdi v2.0.0

Weekly downloads
258
License
MIT
Repository
github
Last release
1 year ago

An ember-cli addon for using Material Design Icons in Ember applications.

All icons are stored in the file vendor.js.

Compatibility

  • Ember.js v3.24 or above
  • Ember CLI v3.24 or above
  • Node.js v12 or above

Demo

Getting Started

Install in ember-cli application

ember install ember-mdi

Usage

<MdIcon @icon="alert"/>

We get follow html:

<svg class="md-icon md-icon-alert" width="24" height="24" viewBox="0 0 24 24" role="img">
  <path d="M13,14H11V10H13M13,18H11V16H13M1,21H23L12,2L1,21Z" />
</svg>

Component md-icon has some options with default values:

NameValue
@size24
@titlenull
@fillnull
@role"img"
@spinfalse
@flipHfalse
@flipVfalse
@rotatenull
@strokenull
@strokeWidthnull
@strokeLinecapnull
@strokeLinejoinnull
@strokeDasharraynull
@strokeDashoffsetnull
@strokeOpacitynull

Configuration

By default ember-mdi stores all icons. And it has the size about 750KB. If you don't need all icons, use the option icons for limit their. And ember-mdi will store only your specific icons. Don't forget restart ember serve.

// ember-cli-build.js

module.exports = function(defaults) {
  let app = new EmberApp(defaults, {
    'ember-mdi': {
      icons: ['heart', 'bug'],
    }
  });

  ...
};

System-wide config

If you want to apply some options to all your icons, you need create the md-icon component and apply they inside it:

import MdIcon from 'ember-mdi/components/md-icon';

export default class extends MdIcon {
  // Place here your preferences
  size = 28
  fill = 'blue'
}

Contributing

See the Contributing guide for details.

License

ember-mdi is released under the MIT License. See the bundled LICENSE file for details.

2.0.0

1 year ago

2.0.0-beta.2

1 year ago

2.0.0-beta.1

2 years ago

2.0.0-beta.0

2 years ago

1.0.0

2 years ago

0.10.0

2 years ago

0.9.0

3 years ago

0.8.2

4 years ago

0.8.1

4 years ago

0.8.0

4 years ago

0.7.2

4 years ago

0.7.1

5 years ago

0.7.0

5 years ago

0.6.0

5 years ago

0.5.0

5 years ago

0.4.8

6 years ago

0.4.7

6 years ago

0.4.6

6 years ago

0.4.5

6 years ago

0.4.4

6 years ago

0.4.3

6 years ago

0.4.2

6 years ago

0.4.1

6 years ago

0.3.2

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago