46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { SVG } from '@wordpress/primitives';
|
||
|
|
||
|
const thumbnailsPositionRight = (
|
||
|
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 24" fill="none">
|
||
|
<g clipPath="url(#clip0_420_11656)">
|
||
|
<path
|
||
|
d="M14.5 3H2.5C1.4 3 0.5 3.9 0.5 5V19C0.5 20.1 1.4 21 2.5 21H14.5C15.6 21 16.5 20.1 16.5 19V5C16.5 3.9 15.6 3 14.5 3ZM2.5 4.5H14.5C14.8 4.5 15 4.7 15 5V13.4L13 10.5C12.7 10.2 12.2 10.2 12 10.5L8.4 14L5.5 12C5.2 11.8 4.9 11.8 4.7 12L2.1 14.6V5C2 4.7 2.2 4.5 2.5 4.5ZM14.5 19.5H2.5C2.2 19.5 2 19.3 2 19V16.6L5.1 13.6L8.1 15.5C8.4 15.7 8.8 15.7 9 15.4L12.5 12L15 15.4V19C15 19.3 14.8 19.5 14.5 19.5Z"
|
||
|
fill="currentColor"
|
||
|
/>
|
||
|
<rect
|
||
|
x="19.25"
|
||
|
y="3.75"
|
||
|
width="4.5"
|
||
|
height="4.5"
|
||
|
rx="1.25"
|
||
|
stroke="currentColor"
|
||
|
strokeWidth="1.5"
|
||
|
/>
|
||
|
<rect
|
||
|
x="19.25"
|
||
|
y="10.75"
|
||
|
width="4.5"
|
||
|
height="4.5"
|
||
|
rx="1.25"
|
||
|
stroke="currentColor"
|
||
|
strokeWidth="1.5"
|
||
|
/>
|
||
|
</g>
|
||
|
<defs>
|
||
|
<clipPath id="clip0_420_11656">
|
||
|
<rect
|
||
|
width="24"
|
||
|
height="24"
|
||
|
fill="currentColor"
|
||
|
transform="translate(0.5)"
|
||
|
/>
|
||
|
</clipPath>
|
||
|
</defs>
|
||
|
</SVG>
|
||
|
);
|
||
|
|
||
|
export default thumbnailsPositionRight;
|