You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
357 B

import React from "react";
import map from "./map.svg";
const Location = () => {
return (
<div className="mx-2">
<span className="text-xs mr-2" style={{ color: "#65A9FF" }}>
لوکیشن مد نظر:
</span>
<img className="mt-1 mr-2 border border-blue-300 rounded" src={map} />
</div>
);
};
export default Location;