Rocky_Mountain_Vending/.pnpm-store/v10/files/fb/87b3fb61645879d1791ce2953e3bf68013f1d24bb2cd3233b45ed6cc2e35d9c60262f2b44f5e95700678712bc93e80d3f6dafcfab3554cd5492181514b7d84
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
292 B
Text

/**
* Merge multiple args to a single string with spaces. Useful for merging class names.
* @example
* cx('foo', 'bar') // 'foo bar'
* cx('foo', null, 'bar', undefined, 'baz', false) // 'foo bar baz'
*/
export declare function cx(...args: (string | undefined | null | false)[]): string;