// Brand marks for ClearCoat — copied from the Ecosystem direction
const EcoConstellation = ({ size = 56, color, accent }) => {
const c = color || '#4ea6ff';
const a = accent || '#8a5cf6';
const gid = 'ecG_' + Math.random().toString(36).slice(2, 8);
return (
);
};
const CCWordmark = ({ size = 22, color = '#0b1220', accent }) => (
Clear
C
oat
);
// Square logo (drawn — generic, not Square Inc's actual mark) for the connector card
const SquareLogo = ({ size = 22 }) => (
);
Object.assign(window, { EcoConstellation, CCWordmark, SquareLogo });