mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-29 00:16:39 +01:00
use mui cut, paste icons (#630)
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user