Skip to content

Commit

Permalink
new icons - files
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkadiusz Juszczyk committed Sep 25, 2023
1 parent e45b06b commit 6c6fef5
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/icons/DoubleArrow.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { createElement } from "react";
import SvgIcon from "@mui/material/SvgIcon";
const DoubleArrow = (props: any) =>
createElement(
SvgIcon,
props,
<path
d="M12 21V3m0 18 3-3m-3 3-3-3m3-15L9 6m3-3 3 3"
stroke="#192832"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
);
export default DoubleArrow;
22 changes: 22 additions & 0 deletions src/icons/HandGrab.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { createElement } from "react";
import SvgIcon from "@mui/material/SvgIcon";
const HandGrab = (props: any) =>
createElement(
SvgIcon,
props,
<path
d="M8 11V7.5a1.5 1.5 0 0 1 3 0V10m0-.5v-3a1.5 1.5 0 1 1 3 0V10m0-2.5a1.5 1.5 0 1 1 3 0V10"
stroke="#192832"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>,
<path
d="M17 9.5a1.5 1.5 0 0 1 3 0V14a6 6 0 0 1-6 6h-2 .208a6 6 0 0 1-5.012-2.7L7 17c-.312-.479-1.407-2.388-3.286-5.728A1.5 1.5 0 0 1 4.25 9.25a1.867 1.867 0 0 1 2.28.28L8 11"
stroke="#192832"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
);
export default HandGrab;

0 comments on commit 6c6fef5

Please sign in to comment.