Commit 8759525 1 parent ce13979 commit 8759525 Copy full SHA for 8759525
File tree 4 files changed +24
-2
lines changed
4 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 33
33
"release" : " yarn build && npm publish build"
34
34
},
35
35
"peerDependencies" : {
36
- "@material-ui/icons" : " ^1.0.0" ,
37
36
"@material-ui/core" : " ^1.0.0" ,
38
37
"react" : " ^16.3.0" ,
39
38
"react-dom" : " ^16.3.0"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from 'react';
2
2
import PropTypes from 'prop-types' ;
3
3
import classNames from 'classnames' ;
4
4
import { withStyles } from '@material-ui/core/styles' ;
5
- import AddIcon from '@material-ui/ icons/Add' ;
5
+ import AddIcon from '../internal/svg- icons/Add' ;
6
6
7
7
const styles = theme => ( {
8
8
root : {
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ rules : {
3
+ 'import/no-mutable-exports' : 'off' ,
4
+ 'max-len' : 'off' ,
5
+ } ,
6
+ } ;
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+ import pure from 'recompose/pure' ;
3
+ import SvgIcon from '@material-ui/core/SvgIcon' ;
4
+
5
+ /**
6
+ * @ignore - internal component.
7
+ */
8
+ let Add = props => (
9
+ < SvgIcon { ...props } >
10
+ < path d = "M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" />
11
+ </ SvgIcon >
12
+ ) ;
13
+
14
+ Add = pure ( Add ) ;
15
+ Add . muiName = 'SvgIcon' ;
16
+
17
+ export default Add ;
You can’t perform that action at this time.
0 commit comments