12 lines
360 B
TypeScript
12 lines
360 B
TypeScript
import React from 'react';
|
|
|
|
//https://materialdesignicons.com/icon/cursor-move
|
|
|
|
export function IconPan(): JSX.Element {
|
|
return (
|
|
<svg width={24} height={24} stroke="currentColor">
|
|
<path
|
|
d="M13,6V11H18V7.75L22.25,12L18,16.25V13H13V18H16.25L12,22.25L7.75,18H11V13H6V16.25L1.75,12L6,7.75V11H11V6H7.75L12,1.75L16.25,6H13Z"/>
|
|
</svg>
|
|
);
|
|
}
|