PluginProbe
Code Snippets / 4.0.0-beta.2
Code Snippets v4.0.0-beta.2
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 / ExpandIcon.tsx

ExpandIcon.tsx in Code Snippets 4.0.0-beta.2, at js/components/common/icons/ExpandIcon.tsx

22 lines 741 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 ExpandIcon: 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="M12 3H15V6" />
7 <path d="M10.5 7.5L15 3L10.5 7.5Z" />
8 <path d="M6 15H3V12" />
9 <path d="M3 15L7.5 10.5L3 15Z" />
10 <path d="M12 15H15V12" />
11 <path d="M10.5 10.5L15 15L10.5 10.5Z" />
12 <path d="M6 3H3V6" />
13 <path d="M3 3L7.5 7.5L3 3Z" />
14 <path
15 d="M12 3H15M15 3V6M15 3L10.5 7.5M6 15H3M3 15V12M3 15L7.5 10.5M12 15H15M15 15V12M15 15L10.5 10.5M6 3H3M3 3V6M3 3L7.5 7.5"
16 stroke="currentcolor"
17 strokeWidth="1.5"
18 strokeLinecap="round"
19 strokeLinejoin="round"
20 />
21 </svg>
22