Skip to content

Commit c31a538

Browse files
feat(image-component): fixed props
1 parent d1989ad commit c31a538

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/components/ImageComponent/ImageComponent.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ class ImageComponent extends Component {
1010
children: PropTypes.node,
1111
border: PropTypes.string,
1212
className: PropTypes.string,
13-
onGrid: PropTypes.bool,
13+
fixed: PropTypes.string,
14+
bg: PropTypes.string,
1415
};
1516

1617
static defaultProps = {
1718
cols: '12',
18-
onGrid: true,
1919
};
2020

2121
render() {
@@ -25,7 +25,6 @@ class ImageComponent extends Component {
2525
cols,
2626
border,
2727
className,
28-
onGrid,
2928
fixed,
3029
bg,
3130
} = this.props;

0 commit comments

Comments
 (0)