18 lines
741 B
XML
18 lines
741 B
XML
/**
|
|
* External dependencies
|
|
*/
|
|
import { SVG } from '@wordpress/primitives';
|
|
|
|
const customerAccountStyle = (
|
|
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M8.00009 8.34785C10.3096 8.34785 12.1819 6.47909 12.1819 4.17393C12.1819 1.86876 10.3096 0 8.00009 0C5.69055 0 3.81824 1.86876 3.81824 4.17393C3.81824 6.47909 5.69055 8.34785 8.00009 8.34785ZM0.333496 15.6522C0.333496 15.8444 0.489412 16 0.681933 16H15.3184C15.5109 16 15.6668 15.8444 15.6668 15.6522V14.9565C15.6668 12.1428 13.7821 9.73911 10.0912 9.73911H5.90931C2.21828 9.73911 0.333645 12.1428 0.333645 14.9565L0.333496 15.6522Z"
|
|
fill="currentColor"
|
|
/>
|
|
</SVG>
|
|
);
|
|
|
|
export default customerAccountStyle;
|