# code-snippets/3.10.2/js/components/common/icons/MinimiseIcon.tsx

Code Snippets, version 3.10.2. 22 lines.

- Page: https://pluginprobe.com/plugins/code-snippets/3.10.2/code/js/components/common/icons/MinimiseIcon.tsx
- Raw: https://pluginprobe.com/plugins/code-snippets/3.10.2/raw/js/components/common/icons/MinimiseIcon.tsx
- Modified: 2026-08-24T09:37:00+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/code-snippets/3.10.2/code/js/components/common/icons/MinimiseIcon.tsx#L10-L20`.

```tsx
import React from 'react'
import type { SVGProps } from 'react'

export const MinimiseIcon: React.FC<SVGProps<SVGSVGElement>> = props =>
	<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
		<path d="M3.75 6.75H6.75V3.75" />
		<path d="M2.25 2.25L6.75 6.75L2.25 2.25Z" />
		<path d="M3.75 11.25H6.75V14.25" />
		<path d="M2.25 15.75L6.75 11.25L2.25 15.75Z" />
		<path d="M14.25 6.75H11.25V3.75" />
		<path d="M11.25 6.75L15.75 2.25L11.25 6.75Z" />
		<path d="M14.25 11.25H11.25V14.25" />
		<path d="M11.25 11.25L15.75 15.75L11.25 11.25Z" />
		<path
			d="M3.75 6.75H6.75M6.75 6.75V3.75M6.75 6.75L2.25 2.25M3.75 11.25H6.75M6.75 11.25V14.25M6.75 11.25L2.25 15.75M14.25 6.75H11.25M11.25 6.75V3.75M11.25 6.75L15.75 2.25M14.25 11.25H11.25M11.25 11.25V14.25M11.25 11.25L15.75 15.75"
			stroke="currentcolor"
			strokeWidth="1.5"
			strokeLinecap="round"
			strokeLinejoin="round"
		/>
	</svg>

```
