# top-10/4.3.1/includes/frontend/blocks/src/post-count/components/icons.js

WebberZone Top 10 — Popular Posts, version 4.3.1. 68 lines.

- Page: https://pluginprobe.com/plugins/top-10/4.3.1/code/includes/frontend/blocks/src/post-count/components/icons.js
- Raw: https://pluginprobe.com/plugins/top-10/4.3.1/raw/includes/frontend/blocks/src/post-count/components/icons.js
- Modified: 2026-06-06T07:49:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/top-10/4.3.1/code/includes/frontend/blocks/src/post-count/components/icons.js#L10-L20`.

```javascript
export const countIcon = (
	<svg
		viewBox="-2.4 -2.4 28.80 28.80"
		fill="none"
		xmlns="http://www.w3.org/2000/svg"
		stroke="#0a0a0a"
	>
		<g id="SVGRepo_bgCarrier" strokeWidth={0}>
			<rect
				x={-2.4}
				y={-2.4}
				width={28.8}
				height={28.8}
				rx={0}
				fill="#FFBD59"
				strokeWidth={0}
			/>
		</g>
		<g
			id="SVGRepo_tracerCarrier"
			strokeLinecap="round"
			strokeLinejoin="round"
		/>
		<g id="SVGRepo_iconCarrier">
			<path
				d="M13 21L17 3"
				stroke="#0a0a0a"
				strokeWidth={2}
				strokeLinecap="round"
				strokeLinejoin="round"
			/>
			<path
				d="M7 21L11 3"
				stroke="#0a0a0a"
				strokeWidth={2}
				strokeLinecap="round"
				strokeLinejoin="round"
			/>
			<path
				d="M20 9L4 9"
				stroke="#0a0a0a"
				strokeWidth={2}
				strokeLinecap="round"
				strokeLinejoin="round"
			/>
			<path
				d="M4 15L20 15"
				stroke="#0a0a0a"
				strokeWidth={2}
				strokeLinecap="round"
				strokeLinejoin="round"
			/>
		</g>
	</svg>
);

export const LinkIcon = `
<svg width="16" height="16" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
    <path d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" fill="currentColor"/>
</svg>
`;

export const UnlinkIcon = `
<svg width="16" height="16" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
    <path d="M17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.43-.98 2.63-2.31 2.98l1.46 1.46C20.88 15.61 22 13.95 22 12c0-2.76-2.24-5-5-5zm-1 4h-2.19l2 2H16v-2zM2 4.27l3.11 3.11C3.29 8.12 2 9.91 2 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4L20 19.74 3.27 3 2 4.27z" fill="currentColor"/>
</svg>
`;

```
