0.1.9 • Published 4 years ago

mithril-polaris-icons v0.1.9

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Mithril Polaris Icons

Shopify Polaris icon support for those using Mithril.js in app development. Provides each icon as function exporting a simple vnode. You can see the full list of polaris icons here.

Why?

Because Mithril is dope and Shopify Polaris only supports React components and by doing so they indirectly help Facebook hold a monopoly on software tooling. I don't like that and I don't like React.

Install

pnpm

pnpm i mithril-polaris-icons

npm

npm install mithril-polaris-icons

Usage

Each icon is exported as a function returning as vnode, for example:

import { SomeIcon, AnotherIcon } from "mithril-polaris-icons";

export default {
  // ...
  view:() => [
    SomeIcon(),
    AnotherIcon({
      backdrop: true,
      accessibilityLabel: 'some label',
      color: 'colorSkyLighter',
      source: 'default'
    }),
  ]
}

Each icon function accepts an option object{} parameter where you can define the available Props. The above example would generate:

<!-- Some Icon -->
<span class="Polaris-Icon">
  <svg viewBox="0 0 20 20" class="Polaris-Icon__Svg" focusable="false" aria-hidden="true"><path d="M15 11h-4v4H9v-4H5V9h4V5h2v4h4v2zm-5-9a8 8 0 1 0 0 16 8 8 0 0 0 0-16z" fill-rule="evenodd" /></svg>
</span>

<!-- Another Icon -->
<span class="Polaris-Icon Polaris-Icon--colorSkyLighter Polaris-Icon--isColored Polaris-Icon--hasBackdrop">
  <svg
   aria-label="some label"
   viewBox="0 0 20 20"
   class="Polaris-Icon__Svg"
   focusable="false"
   aria-hidden="true"><path d="M15 11h-4v4H9v-4H5V9h4V5h2v4h4v2zm-5-9a8 8 0 1 0 0 16 8 8 0 0 0 0-16z" fill-rule="evenodd" /></svg>
</span>

Related Project

TODO

  • Provide Typings
  • Allow for more extensible control
  • Support custom icons

License

MIT

0.1.8

4 years ago

0.1.7

4 years ago

0.1.9

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago