| 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 |
|