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>
12 lines
398 B
Text
12 lines
398 B
Text
import * as React from 'react';
|
|
|
|
type Direction = 'ltr' | 'rtl';
|
|
interface DirectionProviderProps {
|
|
children?: React.ReactNode;
|
|
dir: Direction;
|
|
}
|
|
declare const DirectionProvider: React.FC<DirectionProviderProps>;
|
|
declare function useDirection(localDir?: Direction): Direction;
|
|
declare const Provider: React.FC<DirectionProviderProps>;
|
|
|
|
export { DirectionProvider, Provider, useDirection };
|