46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { SVG } from '@wordpress/primitives';
|
||
|
|
||
|
const thumbnailsPositionLeft = (
|
||
|
<SVG xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 24" fill="none">
|
||
|
<g clipPath="url(#clip0_420_11645)">
|
||
|
<path
|
||
|
d="M22.5 3H10.5C9.4 3 8.5 3.9 8.5 5V19C8.5 20.1 9.4 21 10.5 21H22.5C23.6 21 24.5 20.1 24.5 19V5C24.5 3.9 23.6 3 22.5 3ZM10.5 4.5H22.5C22.8 4.5 23 4.7 23 5V13.4L21 10.5C20.7 10.2 20.2 10.2 20 10.5L16.4 14L13.5 12C13.2 11.8 12.9 11.8 12.7 12L10.1 14.6V5C10 4.7 10.2 4.5 10.5 4.5ZM22.5 19.5H10.5C10.2 19.5 10 19.3 10 19V16.6L13.1 13.6L16.1 15.5C16.4 15.7 16.8 15.7 17 15.4L20.5 12L23 15.4V19C23 19.3 22.8 19.5 22.5 19.5Z"
|
||
|
fill="currentColor"
|
||
|
/>
|
||
|
<rect
|
||
|
x="1.25"
|
||
|
y="3.75"
|
||
|
width="4.5"
|
||
|
height="4.5"
|
||
|
rx="1.25"
|
||
|
stroke="currentColor"
|
||
|
strokeWidth="1.5"
|
||
|
/>
|
||
|
<rect
|
||
|
x="1.25"
|
||
|
y="10.75"
|
||
|
width="4.5"
|
||
|
height="4.5"
|
||
|
rx="1.25"
|
||
|
stroke="currentColor"
|
||
|
strokeWidth="1.5"
|
||
|
/>
|
||
|
</g>
|
||
|
<defs>
|
||
|
<clipPath id="clip0_420_11645">
|
||
|
<rect
|
||
|
width="24"
|
||
|
height="24"
|
||
|
fill="white"
|
||
|
transform="translate(0.5)"
|
||
|
/>
|
||
|
</clipPath>
|
||
|
</defs>
|
||
|
</SVG>
|
||
|
);
|
||
|
|
||
|
export default thumbnailsPositionLeft;
|