Rocky_Mountain_Vending/.pnpm-store/v10/files/76/0e34ea5e85dda9f3d1efb33088739b8d99917496f8d0a32783d7fad4e37c29ed86632bbede04c59dfa4f2a6163005e6dc120c2623dbebc21a09933d3b8fbce
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

8 lines
306 B
Text

import * as React from 'react';
type ToastProps = React.HTMLProps<HTMLDivElement> & {
children?: React.ReactNode;
onClick?: () => void;
className?: string;
};
export declare const Toast: React.ForwardRefExoticComponent<Omit<ToastProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export {};