import PropTypes from 'prop-types'; import React from 'react'; import classNames from 'classnames'; import EnhancedSelectInputOption from './EnhancedSelectInputOption'; import styles from './HintedSelectInputOption.css'; function HintedSelectInputOption(props) { const { value, hint, isMobile, ...otherProps } = props; return (
{value}
{ hint != null &&
{hint}
}
); } HintedSelectInputOption.propTypes = { value: PropTypes.string.isRequired, hint: PropTypes.node, isMobile: PropTypes.bool.isRequired }; export default HintedSelectInputOption;