import React, { PropTypes } from 'react'

const propTypes = {
  className: PropTypes.string,
  children: PropTypes.node,
}

const defaultProps = {
  className: '',
}

const Option = ({ className, children, ...other }) =>
  <option {...other} className={className}>
    {children}
  </option>

Option.propTypes = propTypes
Option.defaultProps = defaultProps

export default Option
