-
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
6adc834
commit 25e8f9e
Showing
9 changed files
with
87 additions
and
4 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
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
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
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
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
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,14 @@ | ||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { SVG, Path, Rect } from '@wordpress/primitives'; | ||
|
||
const queryPaginationNext = ( | ||
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
<Rect x="6" y="10.5" width="3" height="3" rx="1.5" fill="#000" /> | ||
<Rect x="11" y="10.5" width="3" height="3" rx="1.5" fill="#000" /> | ||
<Path d="M16.5 9.5L19 12l-2.5 2.5" stroke="#1E1E1E" strokeWidth="1.5" /> | ||
</SVG> | ||
); | ||
|
||
export default queryPaginationNext; |
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,17 @@ | ||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { SVG, Path, Rect } from '@wordpress/primitives'; | ||
|
||
const queryPaginationNumbers = ( | ||
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
<Rect x="4" y="10.5" width="6" height="3" rx="1.5" fill="#000" /> | ||
<Path d="M13.5 14v-4l-1.5.5" stroke="#1E1E1E" /> | ||
<Path | ||
d="M19.266 9.805c-.473-.611-1.22-.51-1.702-.367a3.854 3.854 0 00-.718.307l.13 1.082c.192-.17.47-.422.782-.515.34-.1.578.025.668.141.21.27-.034.835-.16 1.055-.49.85-.93 1.594-1.45 2.492H19.5v-1h-.914c.277-.574.814-1.443.914-2.106.052-.343.02-.762-.234-1.09z" | ||
fill="#1E1E1E" | ||
/> | ||
</SVG> | ||
); | ||
|
||
export default queryPaginationNumbers; |
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,30 @@ | ||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { SVG, Path, Rect } from '@wordpress/primitives'; | ||
|
||
const queryPaginationPrevious = ( | ||
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
<Rect | ||
x="18" | ||
y="13.5" | ||
width="3" | ||
height="3" | ||
rx="1.5" | ||
transform="rotate(-180 18 13.5)" | ||
fill="#000" | ||
/> | ||
<Rect | ||
x="13" | ||
y="13.5" | ||
width="3" | ||
height="3" | ||
rx="1.5" | ||
transform="rotate(-180 13 13.5)" | ||
fill="#000" | ||
/> | ||
<Path d="M7.5 14.5L5 12l2.5-2.5" stroke="#1E1E1E" strokeWidth="1.5" /> | ||
</SVG> | ||
); | ||
|
||
export default queryPaginationPrevious; |
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,14 @@ | ||
/** | ||
* WordPress dependencies | ||
*/ | ||
import { SVG, Rect } from '@wordpress/primitives'; | ||
|
||
const queryPagination = ( | ||
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> | ||
<Rect x="4" y="10.5" width="6" height="3" rx="1.5" fill="#000" /> | ||
<Rect x="12" y="10.5" width="3" height="3" rx="1.5" fill="#000" /> | ||
<Rect x="17" y="10.5" width="3" height="3" rx="1.5" fill="#000" /> | ||
</SVG> | ||
); | ||
|
||
export default queryPagination; |