UNPKG

fleeta-components

Version:

A comprehensive React component library for fleet management applications

15 lines 539 B
import React from 'react'; interface VehicleMarkerProps { icon?: React.ReactNode; speed?: number; course?: number | null; speedUnit?: 'km/h' | 'mph'; className?: string; } /** * VehicleMarker component displays a vehicle icon with speed information * The icon is precisely positioned at the exact location point */ export declare function VehicleMarker({ icon, speed, course, speedUnit, className }: VehicleMarkerProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=VehicleMarker.d.ts.map