mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-29 00:16:39 +01:00
add cut and paste icons
This commit is contained in:
10
src/assets/icons/Cut.tsx
Normal file
10
src/assets/icons/Cut.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
10
src/assets/icons/Paste.tsx
Normal file
10
src/assets/icons/Paste.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -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)}
|
||||
|
||||
Reference in New Issue
Block a user