mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
8452e8b777
* Fixed duplication kve bug * Some changes * Add proptypes linting * Fixed proptypes even more * Filename linting
21 lines
474 B
JavaScript
21 lines
474 B
JavaScript
import React, {PropTypes, PureComponent} from 'react';
|
|
import classnames from 'classnames';
|
|
|
|
class DropdownRight extends PureComponent {
|
|
render () {
|
|
const {className, children, ...extraProps} = this.props;
|
|
return (
|
|
<span className={classnames('dropdown__right', className)} {...extraProps}>
|
|
{children}
|
|
</span>
|
|
);
|
|
}
|
|
}
|
|
|
|
DropdownRight.propTypes = {
|
|
children: PropTypes.node,
|
|
className: PropTypes.string
|
|
};
|
|
|
|
export default DropdownRight;
|