From 6c6fef5db0f64672a0574a82429360e4af972b8a Mon Sep 17 00:00:00 2001 From: Arkadiusz Juszczyk Date: Mon, 25 Sep 2023 14:44:39 +0200 Subject: [PATCH] new icons - files --- src/icons/DoubleArrow.tsx | 15 +++++++++++++++ src/icons/HandGrab.tsx | 22 ++++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 src/icons/DoubleArrow.tsx create mode 100644 src/icons/HandGrab.tsx diff --git a/src/icons/DoubleArrow.tsx b/src/icons/DoubleArrow.tsx new file mode 100644 index 000000000..9b6711017 --- /dev/null +++ b/src/icons/DoubleArrow.tsx @@ -0,0 +1,15 @@ +import { createElement } from "react"; +import SvgIcon from "@mui/material/SvgIcon"; +const DoubleArrow = (props: any) => + createElement( + SvgIcon, + props, + + ); +export default DoubleArrow; diff --git a/src/icons/HandGrab.tsx b/src/icons/HandGrab.tsx new file mode 100644 index 000000000..3592ba6c4 --- /dev/null +++ b/src/icons/HandGrab.tsx @@ -0,0 +1,22 @@ +import { createElement } from "react"; +import SvgIcon from "@mui/material/SvgIcon"; +const HandGrab = (props: any) => + createElement( + SvgIcon, + props, + , + + ); +export default HandGrab;