basic style step page add-doctor

This commit is contained in:
Ehsan
2024-10-10 21:59:31 +03:30
parent fb0c02abd4
commit 07dd617803
5 changed files with 216 additions and 23 deletions
+34
View File
@@ -0,0 +1,34 @@
function LocationAdd({ active }) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="40"
height="40"
viewBox="0 0 40 40"
fill="none"
>
<path
d="M15.4165 18.333H24.5832"
stroke="#616161"
stroke-width="1.5"
stroke-linecap="round"
className={active ? "stroke-[#FAFAFA]" : ""}
/>
<path
d="M20 22.9167V13.75"
stroke="#616161"
stroke-width="1.5"
stroke-linecap="round"
className={active ? "stroke-[#FAFAFA]" : ""}
/>
<path
d="M6.0335 14.1497C9.31683 -0.283655 30.7002 -0.266988 33.9668 14.1663C35.8835 22.633 30.6168 29.7997 26.0002 34.233C22.6502 37.4663 17.3502 37.4663 13.9835 34.233C9.3835 29.7997 4.11683 22.6163 6.0335 14.1497Z"
stroke="#616161"
stroke-width="1.5"
className={active ? "stroke-[#FAFAFA]" : ""}
/>
</svg>
);
}
export default LocationAdd;