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>
23 lines
948 B
Text
23 lines
948 B
Text
import * as _radix_ui_react_context from '@radix-ui/react-context';
|
|
import React from 'react';
|
|
import { Slot } from '@radix-ui/react-slot';
|
|
|
|
type SlotProps = React.ComponentPropsWithoutRef<typeof Slot>;
|
|
interface CollectionProps extends SlotProps {
|
|
scope: any;
|
|
}
|
|
declare function createCollection<ItemElement extends HTMLElement, ItemData = {}>(name: string): readonly [{
|
|
readonly Provider: React.FC<{
|
|
children?: React.ReactNode;
|
|
scope: any;
|
|
}>;
|
|
readonly Slot: React.ForwardRefExoticComponent<CollectionProps & React.RefAttributes<HTMLElement>>;
|
|
readonly ItemSlot: React.ForwardRefExoticComponent<React.PropsWithoutRef<ItemData & {
|
|
children: React.ReactNode;
|
|
scope: any;
|
|
}> & React.RefAttributes<ItemElement>>;
|
|
}, (scope: any) => () => ({
|
|
ref: React.RefObject<ItemElement | null>;
|
|
} & ItemData)[], _radix_ui_react_context.CreateScope];
|
|
|
|
export { type CollectionProps, createCollection };
|