Rocky_Mountain_Vending/.pnpm-store/v10/files/5d/97cc6d936a0baa5dc54da1a60c8f3f688e7546965037011cdf0cb60f205433a8f3e914b730099b88562aad72083ac0e95db6d7587d4cf87dbf6be6d5eb197a
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

17 lines
784 B
Text

import React from 'react';
import { ActiveShape } from './types';
import { BarProps } from '../cartesian/Bar';
type BarRectangleProps = {
option: ActiveShape<BarProps, SVGPathElement>;
isActive: boolean;
} & BarProps;
export declare function BarRectangle(props: BarRectangleProps): React.JSX.Element;
export type MinPointSize = number | ((value: number | undefined | null, index: number) => number);
/**
* Safely gets minPointSize from from the minPointSize prop if it is a function
* @param minPointSize minPointSize as passed to the Bar component
* @param defaultValue default minPointSize
* @returns minPointSize
*/
export declare const minPointSizeCallback: (minPointSize: MinPointSize, defaultValue?: number) => (value: unknown, index: number) => number;
export {};