matrix-react-sdk
Version:
SDK for matrix.org using React
11 lines (10 loc) • 317 B
TypeScript
import React from "react";
import { LocationShareError } from "../../../utils/location";
export interface MapErrorProps {
error: LocationShareError;
onFinished?: () => void;
isMinimised?: boolean;
className?: string;
onClick?: () => void;
}
export declare const MapError: React.FC<MapErrorProps>;