Skip to content

Commit

Permalink
[Material Design Icon] Fix to output react 0.14 style components
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Fischer committed Nov 22, 2015
1 parent ce29b16 commit af26f04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions icon-builder/tpl/SvgIcon.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const React = require('react/addons');
const PureRenderMixin = React.addons.PureRenderMixin;
const React = require('react');
const PureRenderMixin = require('react-addons-pure-render-mixin');
const SvgIcon = {{{ muiRequireStmt }}};

const {{className}} = React.createClass({
Expand Down

0 comments on commit af26f04

Please sign in to comment.