Skip to content

Commit 95dba3e

Browse files
authored
Merge pull request rationalappdev#5 from cyphereza/master
Fixed typo
2 parents 1bbc69c + da25da0 commit 95dba3e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/Drawer.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,19 @@ export default class Drawer extends Component {
3232
// Height of the visible teaser area at the bottom of the screen
3333
teaserHeight: PropTypes.number,
3434
// Content extra style
35-
contentStyle: PropTypes.Object,
35+
contentStyle: PropTypes.object,
3636
// Backdrop extra style
37-
backdropStyle: PropTypes.Object,
37+
backdropStyle: PropTypes.object,
3838
};
3939

4040
// Set default prop values
4141
static defaultProps = {
4242
isOpen: false,
4343
header: "Messages",
4444
headerHeight: 70,
45-
teaserHeight: 75
45+
teaserHeight: 75,
46+
contentStyle: null,
47+
backdropStyle: null,
4648
};
4749

4850
// Define state

0 commit comments

Comments
 (0)