/** * External dependencies */ import classnames from 'classnames'; /** * Internal dependencies */ import { espProviderIcons } from '../integration-icons'; import './style.scss'; /** * The single source for how an ESP provider is shown: brand mark plus badge * background. A new provider needs an icon file, an `espProviderIcons` entry, * and a background rule in this component's stylesheet. */ const IntegrationIcon = ( { provider, className }: { provider: string; className?: string } ) => { const icons: Record< string, React.ReactNode > = espProviderIcons; const node = Object.prototype.hasOwnProperty.call( espProviderIcons, provider ) ? icons[ provider ] : null; if ( ! node ) { return null; } // Decorative: the provider is always named in adjacent visible text (the card // title), so hide the mark from assistive tech to avoid duplicate announcements. return ( ); }; export default IntegrationIcon;