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 = { /** Selected item text */ text: PropTypes.string, /** Sets the 'display: inline-block' property */ isInline: PropTypes.bool, /** What the selected item will trigger when clicked */ onClose: PropTypes.func.isRequired, /** Tells when the button should present a disabled state */ isDisabled: PropTypes.bool, /** Accepts class */ className: PropTypes.string, /** Accepts id */ id: PropTypes.string, /** Accepts css style */ style: PropTypes.oneOfType([PropTypes.object, PropTypes.array]), }; SelectedItem.defaultProps = { isInline: true, isDisabled: false, }; export default SelectedItem;