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>
16 lines
621 B
Text
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;
|