34 lines
485 B
TypeScript
34 lines
485 B
TypeScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { SVG, Rect } from '@wordpress/primitives';
|
||
|
|
||
|
export const queryPaginationIcon = (
|
||
|
<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="currentColor"
|
||
|
/>
|
||
|
<Rect
|
||
|
x="12"
|
||
|
y="10.5"
|
||
|
width="3"
|
||
|
height="3"
|
||
|
rx="1.5"
|
||
|
fill="currentColor"
|
||
|
/>
|
||
|
<Rect
|
||
|
x="17"
|
||
|
y="10.5"
|
||
|
width="3"
|
||
|
height="3"
|
||
|
rx="1.5"
|
||
|
fill="currentColor"
|
||
|
/>
|
||
|
</SVG>
|
||
|
);
|