-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac2e4dd
commit 41c7486
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { SVG, Path } from '@wordpress/primitives'; | ||
|
||
const personalize = ( | ||
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
<path d="M12 5.5a6.5 6.5 0 101.24 12.882A2.501 2.501 0 0114 13.5h3.396c.32 0 .6-.099.783-.233.17-.124.246-.261.266-.412A6.5 6.5 0 0012 5.5zM4 12a8 8 0 1115.932 1.05c-.16 1.212-1.313 1.95-2.536 1.95H14a1 1 0 100 2c1.71 0 2.454 1.864.857 2.475-.887.34-1.85.525-2.857.525a8 8 0 01-8-8zm3-1a1 1 0 112 0 1 1 0 01-2 0zm9-1a1 1 0 100 2 1 1 0 000-2zM9 8a1 1 0 112 0 1 1 0 01-2 0zm5-1a1 1 0 100 2 1 1 0 000-2z" /> | ||
</SVG> | ||
); | ||
|
||
export default personalize; |