// Inline app logos used in the daily-standup-bot example page intro. const LOGO_CDN = 'https://logos.composio.dev/api'; /** A small inline app logo (e.g. ) from the Composio * logo CDN, sized to fit the text line. The CDN serves fixed-colour SVGs, so * pass `invert` for monochrome marks (GitHub) that would vanish on the dark * theme; leave full-colour logos (Slack) bare. */ export function AppLogo({ slug, alt, invert }: { slug: string; alt?: string; invert?: boolean }) { return ( {alt ); }