We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1bbc69c + da25da0 commit 95dba3eCopy full SHA for 95dba3e
src/Drawer.js
@@ -32,17 +32,19 @@ export default class Drawer extends Component {
32
// Height of the visible teaser area at the bottom of the screen
33
teaserHeight: PropTypes.number,
34
// Content extra style
35
- contentStyle: PropTypes.Object,
+ contentStyle: PropTypes.object,
36
// Backdrop extra style
37
- backdropStyle: PropTypes.Object,
+ backdropStyle: PropTypes.object,
38
};
39
40
// Set default prop values
41
static defaultProps = {
42
isOpen: false,
43
header: "Messages",
44
headerHeight: 70,
45
- teaserHeight: 75
+ teaserHeight: 75,
46
+ contentStyle: null,
47
+ backdropStyle: null,
48
49
50
// Define state
0 commit comments