Rocky_Mountain_Vending/.pnpm-store/v10/files/84/fe1697f70f25ee30d51947614d348854a88a1dae2107695a88f00abf41629ea5c9240d8e648c6cfcfbd69282fb505e662ecc40407b47d83c4ee663d0b37080
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

7 lines
309 B
Text

import type { Corners } from '../../../shared';
import { type ResizeDirection } from './resize-provider';
import './resize-handle.css';
export declare const ResizeHandle: ({ direction, position, }: {
direction: ResizeDirection;
position: Corners;
}) => import("react/jsx-runtime").JSX.Element | null;