You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readarr/frontend/src/Components/Menu/MenuButton.js

42 lines
704 B

import PropTypes from 'prop-types';
import React, { Component } from 'react';
import Link from 'Components/Link/Link';
import styles from './MenuButton.css';
class MenuButton extends Component {
//
// Render
render() {
const {
className,
children,
onPress,
...otherProps
} = this.props;
return (
<Link
className={className}
onPress={onPress}
{...otherProps}
>
{children}
</Link>
);
}
}
MenuButton.propTypes = {
className: PropTypes.string,
children: PropTypes.node.isRequired,
onPress: PropTypes.func
};
MenuButton.defaultProps = {
className: styles.menuButton
};
export default MenuButton;