// Platform metadata — used for badges, panels, chips
window.PLATFORMS = {
foreplay: { label: 'Foreplay', color: '#7c3aed', bg: '#f2ebfe' },
adspy: { label: 'AdSpy', color: '#ea580c', bg: '#ffede2' },
brandsearch: { label: 'BrandSearch', color: '#0284c7', bg: '#e0f2fe' },
metaads: { label: 'MetaAds', color: '#1877f2', bg: '#e0ecfe' },
};
window.Icon = ({ name, size = 16, ...rest }) => {
const common = { width: size, height: size, viewBox: '0 0 24 24', fill: 'none', stroke: 'currentColor', strokeWidth: 2, strokeLinecap: 'round', strokeLinejoin: 'round', ...rest };
const paths = {
search: <>>,
filter: ,
scroll: <>>,
film: <>>,
check: ,
arrowRight: <>>,
plus: <>>,
trash: <>>,
x: <>>,
play: ,
trend: <>>,
sliders: <>>,
chevronDown: ,
settings: <>>,
bolt: ,
dedupe: <>>,
loader: <>>,
expand: <>>,
copy: <>>,
caption: <>>,
target: <>>,
edit: <>>,
};
return ;
};