diff --git a/src/assets/icons/Cut.tsx b/src/assets/icons/Cut.tsx new file mode 100644 index 00000000..6442045f --- /dev/null +++ b/src/assets/icons/Cut.tsx @@ -0,0 +1,10 @@ +import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon"; +import { mdiContentCut } from "@mdi/js"; + +export default function Cut(props: SvgIconProps) { + return ( + + + + ); +} diff --git a/src/assets/icons/Paste.tsx b/src/assets/icons/Paste.tsx new file mode 100644 index 00000000..d86b008a --- /dev/null +++ b/src/assets/icons/Paste.tsx @@ -0,0 +1,10 @@ +import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon"; +import { mdiContentPaste } from "@mdi/js"; + +export default function Paste(props: SvgIconProps) { + return ( + + + + ); +} diff --git a/src/components/fields/Status/ConditionModalContent.tsx b/src/components/fields/Status/ConditionModalContent.tsx index 197cbbcb..cec38620 100644 --- a/src/components/fields/Status/ConditionModalContent.tsx +++ b/src/components/fields/Status/ConditionModalContent.tsx @@ -62,7 +62,6 @@ export default function ConditionModalContent({ {type === "number" && ( - {console.log(operatorOptions)} handleUpdate("operator")(v)}