import { h } from 'preact'; import PropTypes from 'prop-types'; import { defaultChannelPropTypes } from '../../common-prop-types/channel-list-prop-type'; export default function ChannelImage(props) { const { channel, newMessagesIndicator, discoverableChannel } = props; return ( pic ); } ChannelImage.propTypes = { channel: defaultChannelPropTypes, discoverableChannel: PropTypes.bool, newMessagesIndicator: PropTypes.string, };