import React from "react"; import PropTypes from "prop-types"; import Text from "../text"; import IconButton from "../icon-button"; import { StyledCloseButton, StyledSelectedTextBox, StyledSelectedItem, } from "./styled-selected-item"; const SelectedItem = (props) => { const { isDisabled, text, onClose } = props; const colorProps = { color: isDisabled ? "#D0D5DA" : "#555F65" }; const onCloseClick = (e) => { !isDisabled && onClose && onClose(e); }; //console.log("SelectedItem render"); return ( {text} ); }; SelectedItem.propTypes = { text: PropTypes.string, isInline: PropTypes.bool, onClose: PropTypes.func.isRequired, isDisabled: PropTypes.bool, className: PropTypes.string, id: PropTypes.string, style: PropTypes.oneOfType([PropTypes.object, PropTypes.array]), }; SelectedItem.defaultProps = { isInline: true, isDisabled: false, }; export default SelectedItem;