/********************************************************************* * © Copyright IBM Corp. 2024 *********************************************************************/ import React from 'react' import PropTypes from 'prop-types' const defaultMiroIconForegroundColor = '#07003B' const defaultMiroIconBackgroundColor = '#FFD02F' export const MiroIcon = ({ foregroundColor = defaultMiroIconForegroundColor, backgroundColor = defaultMiroIconBackgroundColor }) => ( ) MiroIcon.category = 'Boards & Views' MiroIcon.propTypes = { foregroundColor: PropTypes.string, backgroundColor: PropTypes.string }