add cut and paste icons

This commit is contained in:
Gibson Han
2022-02-01 17:09:37 +07:00
parent 13bdb0e2bb
commit 557d13eacb
3 changed files with 20 additions and 1 deletions

10
src/assets/icons/Cut.tsx Normal file
View File

@@ -0,0 +1,10 @@
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

@@ -0,0 +1,10 @@
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

@@ -62,7 +62,6 @@ export default function ConditionModalContent({
{type === "number" && (
<Grid container direction="row" justifyContent="space-between">
<div style={{ width: "45%" }}>
{console.log(operatorOptions)}
<MultiSelect
options={operatorOptions}
onChange={(v) => handleUpdate("operator")(v)}