use mui cut, paste icons (#630)

This commit is contained in:
Sidney Alcantara
2022-02-02 16:44:57 +11:00
parent fefd12491c
commit 93663be493
3 changed files with 4 additions and 22 deletions

View File

@@ -1,10 +0,0 @@
import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
import { mdiContentCut } from "@mdi/js";
export default function Cut(props: SvgIconProps) {
return (
<SvgIcon {...props}>
<path d={mdiContentCut} />
</SvgIcon>
);
}

View File

@@ -1,10 +0,0 @@
import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon";
import { mdiContentPaste } from "@mdi/js";
export default function Paste(props: SvgIconProps) {
return (
<SvgIcon {...props}>
<path d={mdiContentPaste} />
</SvgIcon>
);
}

View File

@@ -1,7 +1,9 @@
import _find from "lodash/find";
import Cut from "@mui/icons-material/ContentCut";
import CopyCells from "@src/assets/icons/CopyCells";
import Cut from "@src/assets/icons/Cut";
import Paste from "@src/assets/icons/Paste";
import Paste from "@mui/icons-material/ContentPaste";
import { useProjectContext } from "@src/contexts/ProjectContext";
export default function BasicContextMenuActions() {