UNPKG

@actinc/dls

Version:

Design Language System (DLS) for ACT & Encoura front-end projects.

19 lines 567 B
/** * Copyright (c) ACT, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; import { PopupProps } from 'react-map-gl/mapbox'; export interface RowsDataProps { title: string; value: string | number | undefined; } export interface MapPopupProps { popupProps: PopupProps; rows?: Array<RowsDataProps>; } export declare const MapPopup: React.FC<MapPopupProps>; export default MapPopup; //# sourceMappingURL=index.d.ts.map