Add custom toolbar

This commit is contained in:
Eric NGUYEN 2023-02-17 11:53:19 +01:00
parent 4053763e44
commit b3338b0167
11 changed files with 319 additions and 0 deletions

View file

@ -0,0 +1,12 @@
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>
);
}