diff --git a/packages/venia-ui/lib/components/Select/option.js b/packages/venia-ui/lib/components/Select/option.js deleted file mode 100644 index 8da2f11917..0000000000 --- a/packages/venia-ui/lib/components/Select/option.js +++ /dev/null @@ -1,28 +0,0 @@ -import React from 'react'; -import { bool, shape, string } from 'prop-types'; - -const Option = props => { - const { disabled, item } = props; - const { label, value } = item; - const text = label != null ? label : value; - - return ( - - ); -}; - -Option.propTypes = { - disabled: bool, - item: shape({ - label: string, - value: string.isRequired - }).isRequired -}; - -Option.defaultProps = { - disabled: false -}; - -export default Option;