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>
21 lines
599 B
Text
21 lines
599 B
Text
import React from "react";
|
|
/**
|
|
* Render the chevron icon used in the navigation buttons and dropdowns.
|
|
*
|
|
* @group Components
|
|
* @see https://daypicker.dev/guides/custom-components
|
|
*/
|
|
export declare function Chevron(props: {
|
|
className?: string;
|
|
/**
|
|
* The size of the chevron.
|
|
*
|
|
* @defaultValue 24
|
|
*/
|
|
size?: number;
|
|
/** Set to `true` to disable the chevron. */
|
|
disabled?: boolean;
|
|
/** The orientation of the chevron. */
|
|
orientation?: "up" | "down" | "left" | "right";
|
|
}): React.JSX.Element;
|
|
export type ChevronProps = Parameters<typeof Chevron>[0];
|