import type { ReactNode } from 'react'; import { Button, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from 'cloudrite'; import { Info } from 'lucide-react'; // Cloudrite is dark-only — the overlay surfaces read correctly only against the // brand background, not the harness's white card body. const Surface = ({ children }: { children: ReactNode }) => (
{children}
); // Tooltip must be inside TooltipProvider — outside one it throws rather than // rendering, so the provider is part of every composition. export const Open = () => (
Measured across all Auckland edge nodes
);