Rocky_Mountain_Vending/.pnpm-store/v10/files/a9/b81d733b99aa5a65702d61dab92804ae74a9cd2c7642e71a4c72ffb34ccac401c655166590f82eee0e6942c182511ce552e88e5dc04a71181e0438638031f9
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
658 B
Text

import type { DevToolsIndicatorPosition, DevToolsScale } from '../../../../shared';
export declare function UserPreferencesBody({ theme, hide, hideShortcut, setHideShortcut, scale, setPosition, setScale, position, }: {
theme: 'dark' | 'light' | 'system';
hide: () => void;
hideShortcut: string | null;
setHideShortcut: (value: string | null) => void;
setPosition: (position: DevToolsIndicatorPosition) => void;
position: DevToolsIndicatorPosition;
scale: DevToolsScale;
setScale: (value: DevToolsScale) => void;
}): import("react/jsx-runtime").JSX.Element;
export declare const DEV_TOOLS_INFO_USER_PREFERENCES_STYLES: string;