UNPKG

material-ui

Version:

Material Design UI components built with React

20 lines (14 loc) 384 B
const React = require('react/addons'); const PureRenderMixin = React.addons.PureRenderMixin; const SvgIcon = require('../../svg-icon'); const ActionHome = React.createClass({ mixins: [PureRenderMixin], render() { return ( <SvgIcon {...this.props}> <path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/> </SvgIcon> ); } }); module.exports = ActionHome;