16 lines
742 B
TypeScript
16 lines
742 B
TypeScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { SVG } from '@wordpress/primitives';
|
||
|
|
||
|
const customerAccountStyleAlt = (
|
||
|
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18">
|
||
|
<path
|
||
|
d="M9 0C4.03579 0 0 4.03579 0 9C0 13.9642 4.03579 18 9 18C13.9642 18 18 13.9642 18 9C18 4.03579 13.9642 0 9 0ZM9 4.32C10.5347 4.32 11.7664 5.57056 11.7664 7.08638C11.7664 8.62109 10.5158 9.85277 9 9.85277C7.4653 9.85277 6.23362 8.60221 6.23362 7.08638C6.23362 5.57056 7.46526 4.32 9 4.32ZM9 10.7242C11.1221 10.7242 12.96 12.2021 13.7937 14.4189C12.5242 15.5559 10.8379 16.238 9 16.238C7.16207 16.238 5.49474 15.5369 4.20632 14.4189C5.05891 12.2021 6.87793 10.7242 9 10.7242Z"
|
||
|
fill="currentColor"
|
||
|
/>
|
||
|
</SVG>
|
||
|
);
|
||
|
|
||
|
export default customerAccountStyleAlt;
|