mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-05-12 19:36:41 +07:00
nominatim search (without working dialog)
This commit is contained in:
parent
c3e136cebb
commit
b20a3445d1
27 changed files with 450 additions and 61 deletions
16
src/components/dialogs/DialogLoader.tsx
Normal file
16
src/components/dialogs/DialogLoader.tsx
Normal file
|
@ -0,0 +1,16 @@
|
|||
import React, { FC } from 'react';
|
||||
import { Icon } from '~/components/panels/Icon';
|
||||
|
||||
interface IProps {}
|
||||
|
||||
const DialogLoader: FC<IProps> = ({}) => {
|
||||
return (
|
||||
<div className="dialog-maplist-loader">
|
||||
<div className="dialog-maplist-icon spin">
|
||||
<Icon icon="icon-sync-1" />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export { DialogLoader };
|
Loading…
Add table
Add a link
Reference in a new issue