import Image from "next/image"; import { cn } from "@/lib/utils"; /** * Full-color brand marks for the platform-native scraper verbs, served from * `/public/connectors/*.svg` (same asset library the connector UI uses). Each * is a `ComponentType<{ className?: string }>` so it drops into the playground * catalog and the composer badge exactly like a Lucide/Tabler icon. */ function brandIcon(src: string, alt: string) { return function BrandIcon({ className }: { className?: string }) { return ( {alt} ); }; } export const RedditIcon = brandIcon("/connectors/reddit.svg", "Reddit"); export const YouTubeIcon = brandIcon("/connectors/youtube.svg", "YouTube"); export const GoogleMapsIcon = brandIcon("/connectors/google-maps.svg", "Google Maps"); export const GoogleSearchIcon = brandIcon("/connectors/google-search.svg", "Google Search"); export const WebIcon = brandIcon("/connectors/web.svg", "Web");