Rocky_Mountain_Vending/.pnpm-store/v10/files/da/45a96012607b9af84bc7014855491f49c91a8457da83f4510e8186030f7362993478aa9b5db8200feb8f9845c678e416e9b5385e780fbc84437efdfdb1c418
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

16 lines
621 B
Text

import type { Corners } from '../../../shared';
export declare function Draggable({ children, padding, position: currentCorner, setPosition: setCurrentCorner, onDragStart, dragHandleSelector, disableDrag, avoidZone, ...props }: {
children: React.ReactElement;
position: Corners;
padding: number;
setPosition: (position: Corners) => void;
onDragStart?: () => void;
dragHandleSelector?: string;
disableDrag?: boolean;
style?: React.CSSProperties;
avoidZone?: {
square: number;
corner: Corners;
padding: number;
};
}): import("react/jsx-runtime").JSX.Element;