Rocky_Mountain_Vending/.pnpm-store/v10/files/5b/89e2fe6dd20df4608b8464bb7b6065342f0a1f52e69ac66e098d585739dea7d81687b500d9687f723a26e5570691efc17fd56e16e38e63b09f88792be85a96
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

11 lines
475 B
Text

import { ReactNode, ReactElement } from 'react';
import { Props as LegendProps } from '../component/Legend';
import { FormattedGraphicalItem } from './ChartUtils';
export declare const getLegendProps: ({ children, formattedGraphicalItems, legendWidth, legendContent, }: {
children: ReactNode[];
formattedGraphicalItems?: Array<FormattedGraphicalItem>;
legendWidth: number;
legendContent?: 'children';
}) => null | (LegendProps & {
item: ReactElement;
});