@6thquake/react-material
Version:
React components that implement Google's Material Design.
16 lines (13 loc) • 366 B
JavaScript
import React from 'react';
import pure from 'recompose/pure';
import SvgIcon from '@material-ui/core/SvgIcon';
/**
* @ignore - internal component.
*/
var _ref = React.createElement("path", {
d: "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"
});
let Add = props => React.createElement(SvgIcon, props, _ref);
Add = pure(Add);
Add.muiName = 'SvgIcon';
export default Add;