Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
ReactExample.propTypes = {
codes: PropTypes.arrayOf(PropTypes.string),
decorateCodes: PropTypes.func,
includes: PropTypes.object,
/* eslint-disable react/no-unused-prop-types */
outputChildStyle: PropTypes.object,
outputStyle: PropTypes.object,
/* eslint-enable react/no-unused-prop-types */
themeName: PropTypes.oneOf(Object.keys(Theme.names)),
themeToggle: PropTypes.bool
}
ReactExample.defaultProps = {
orient: 'horizontal',
themeName: Theme.defaultName,
themeToggle: false
}
export default ReactExample