| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
export const Distance = () => ( |
| 3 |
<svg |
| 4 |
xmlns="http://www.w3.org/2000/svg" |
| 5 |
height="20px" |
| 6 |
viewBox="0 -960 960 960" |
| 7 |
width="20px" |
| 8 |
fill="currentColor" |
| 9 |
> |
| 10 |
<title>{__('Distance Icon', 'extendify-local')}</title> |
| 11 |
<path d="M480-80q-106 0-173-33.5T240-200q0-24 14.5-44.5T295-280l63 59q-9 4-19.5 9T322-200q13 16 60 28t98 12q51 0 98.5-12t60.5-28q-7-8-18-13t-21-9l62-60q28 16 43 36.5t15 45.5q0 53-67 86.5T480-80Zm1-220q99-73 149-146.5T680-594q0-102-65-154t-135-52q-70 0-135 52t-65 154q0 67 49 139.5T481-300Zm-1 100Q339-304 269.5-402T200-594q0-71 25.5-124.5T291-808q40-36 90-54t99-18q49 0 99 18t90 54q40 36 65.5 89.5T760-594q0 94-69.5 192T480-200Zm0-320q33 0 56.5-23.5T560-600q0-33-23.5-56.5T480-680q-33 0-56.5 23.5T400-600q0 33 23.5 56.5T480-520Zm0-80Z" /> |
| 12 |
</svg> |
| 13 |
); |
| 14 |
|