17 lines
477 B
XML
17 lines
477 B
XML
/**
|
|
* External dependencies
|
|
*/
|
|
import { SVG } from 'wordpress-components';
|
|
|
|
const address = (
|
|
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 16">
|
|
<path
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
d="M5.6 0A5.596 5.596 0 000 5.6C0 9.8 5.6 16 5.6 16s5.6-6.2 5.6-10.4C11.2 2.504 8.696 0 5.6 0zm-4 5.6c0-2.208 1.792-4 4-4s4 1.792 4 4c0 2.304-2.304 5.752-4 7.904-1.664-2.136-4-5.624-4-7.904zm2 0a2 2 0 114 0 2 2 0 01-4 0z"
|
|
/>
|
|
</SVG>
|
|
);
|
|
|
|
export default address;
|