Rocky_Mountain_Vending/.pnpm-store/v10/files/8e/a8f94b04c694195ce77ee40b71b4ef058e5bfeeb8cfc65de1a19f83d17ddc45592935bfa41b87e48ffc1fe79915c4b45744eaeec84c38c9129eec49ef8ffdb
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

12 lines
418 B
Text

import './tooltip.css';
type TooltipDirection = 'top' | 'bottom' | 'left' | 'right';
interface TooltipProps {
children: React.ReactNode;
title: string | null;
direction?: TooltipDirection;
arrowSize?: number;
offset?: number;
className?: string;
}
export declare const Tooltip: import("react").ForwardRefExoticComponent<TooltipProps & import("react").RefAttributes<HTMLDivElement>>;
export {};