Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
canvasNavStacked: {
flexDirection: 'column',
},
controls: {
backgroundColor: fade(theme.palette.background.paper, 0.5),
bottom: 0,
position: 'absolute',
width: '100%',
zIndex: 50,
},
});
const enhance = compose(
connect(mapStateToProps),
withStyles(styles),
withSize(),
withPlugins('WindowCanvasNavigationControls'),
);
export default enhance(WindowCanvasNavigationControls);
paddingLeft: theme.spacing.unit * 2,
},
vertical: {
},
windowSideBarTitle: {
...theme.typography.subtitle1,
alignSelf: 'center',
flexGrow: 1,
width: 160,
},
});
const enhance = compose(
withTranslation(),
withStyles(styles),
withSize(),
connect(mapStateToProps, mapDispatchToProps),
withPlugins('CompanionWindow'),
);
export default enhance(CompanionWindow);