PluginProbe
Code Snippets / 3.10.1
Code Snippets v3.10.1
4.0.0-beta.2 3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 All 65 releases
code-snippets / js / components / common / icons / MinimiseIcon.tsx

MinimiseIcon.tsx in Code Snippets 3.10.1, at js/components/common/icons/MinimiseIcon.tsx

22 lines 943 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import React from 'react'
2 import type { SVGProps } from 'react'
3
4 export const MinimiseIcon: React.FC<SVGProps<SVGSVGElement>> = props =>
5 <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
6 <path d="M3.75 6.75H6.75V3.75" />
7 <path d="M2.25 2.25L6.75 6.75L2.25 2.25Z" />
8 <path d="M3.75 11.25H6.75V14.25" />
9 <path d="M2.25 15.75L6.75 11.25L2.25 15.75Z" />
10 <path d="M14.25 6.75H11.25V3.75" />
11 <path d="M11.25 6.75L15.75 2.25L11.25 6.75Z" />
12 <path d="M14.25 11.25H11.25V14.25" />
13 <path d="M11.25 11.25L15.75 15.75L11.25 11.25Z" />
14 <path
15 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"
16 stroke="currentcolor"
17 strokeWidth="1.5"
18 strokeLinecap="round"
19 strokeLinejoin="round"
20 />
21 </svg>
22