Skip to content

Commit

Permalink
Convert icon helper to Typescript (#2360)
Browse files Browse the repository at this point in the history
  • Loading branch information
lhsazevedo authored Oct 5, 2020
1 parent 9be629c commit 8c46b37
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
12 changes: 0 additions & 12 deletions js/src/common/helpers/icon.js

This file was deleted.

13 changes: 13 additions & 0 deletions js/src/common/helpers/icon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import * as Mithril from 'mithril';

/**
* The `icon` helper displays an icon.
*
* @param fontClass The full icon class, prefix and the icon’s name.
* @param attrs Any other attributes to apply.
*/
export default function icon(fontClass: string, attrs: Mithril.Attributes = {}): Mithril.Vnode {
attrs.className = 'icon ' + fontClass + ' ' + (attrs.className || '');

return <i {...attrs} />;
}

0 comments on commit 8c46b37

Please sign in to comment.