NeahNew/node_modules/react-leaflet/lib/Pane.d.ts
2025-05-04 17:02:25 +02:00

10 lines
318 B
TypeScript

import React, { type CSSProperties, type ReactNode } from 'react';
export interface PaneProps {
children?: ReactNode;
className?: string;
name: string;
pane?: string;
style?: CSSProperties;
}
export declare const Pane: React.ForwardRefExoticComponent<PaneProps & React.RefAttributes<HTMLElement>>;