2023-05-14 21:12:17 +05:30
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
|
|
export default function DotsIcon() {
|
|
|
|
|
return (
|
|
|
|
|
<svg
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
fill="none"
|
2023-05-14 17:26:21 -04:00
|
|
|
strokeWidth="2"
|
2023-05-14 21:12:17 +05:30
|
|
|
viewBox="0 0 24 24"
|
2023-05-14 17:26:21 -04:00
|
|
|
strokeLinecap="round"
|
|
|
|
|
strokeLinejoin="round"
|
2023-05-14 21:12:17 +05:30
|
|
|
className="h-4 w-4 flex-shrink-0 text-gray-500"
|
|
|
|
|
height="1em"
|
|
|
|
|
width="1em"
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
>
|
2023-05-18 11:09:31 -07:00
|
|
|
<circle cx="12" cy="12" r="1" />
|
|
|
|
|
<circle cx="19" cy="12" r="1" />
|
|
|
|
|
<circle cx="5" cy="12" r="1" />
|
2023-05-14 21:12:17 +05:30
|
|
|
</svg>
|
|
|
|
|
);
|
|
|
|
|
}
|