react-magma-icons 2.3.2 → 2.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +405 -0
- package/README.md +7 -0
- package/dist/categories.esm.js +1 -1
- package/dist/categories.esm.js.map +1 -1
- package/dist/icons/Custom/BookProjectWfIcon.d.ts +7 -0
- package/dist/icons/Custom/BookProjectWfIcon.esm.js +21 -0
- package/dist/icons/Custom/BookProjectWfIcon.esm.js.map +1 -0
- package/dist/icons/Custom/BooksWfIcon.d.ts +7 -0
- package/dist/icons/Custom/BooksWfIcon.esm.js +21 -0
- package/dist/icons/Custom/BooksWfIcon.esm.js.map +1 -0
- package/dist/icons/Custom/ProjectWfIcon.d.ts +7 -0
- package/dist/icons/Custom/ProjectWfIcon.esm.js +21 -0
- package/dist/icons/Custom/ProjectWfIcon.esm.js.map +1 -0
- package/dist/icons/Custom/TasksWfIcon.d.ts +7 -0
- package/dist/icons/Custom/TasksWfIcon.esm.js +23 -0
- package/dist/icons/Custom/TasksWfIcon.esm.js.map +1 -0
- package/dist/icons/Custom/index.d.ts +4 -0
- package/dist/index.esm.js +4 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/react-magma-icons.cjs.development.js +2274 -2200
- package/dist/react-magma-icons.cjs.development.js.map +1 -1
- package/dist/react-magma-icons.cjs.production.min.js +1 -1
- package/dist/react-magma-icons.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/categories.ts +4 -0
- package/src/icons/Custom/BookProjectWfIcon.tsx +22 -0
- package/src/icons/Custom/BooksWfIcon.tsx +21 -0
- package/src/icons/Custom/ProjectWfIcon.tsx +21 -0
- package/src/icons/Custom/TasksWfIcon.tsx +24 -0
- package/src/icons/Custom/index.ts +4 -0
- package/src/svg/.DS_Store +0 -0
- package/src/svg/icons/.DS_Store +0 -0
- package/src/svg/icons/Custom/.DS_Store +0 -0
- package/src/svg/icons/Custom/book_project_wf.svg +5 -0
- package/src/svg/icons/Custom/books_wf.svg +7 -0
- package/src/svg/icons/Custom/project_wf.svg +5 -0
- package/src/svg/icons/Custom/tasks_wf.svg +6 -0
package/package.json
CHANGED
package/src/.DS_Store
ADDED
|
Binary file
|
package/src/categories.ts
CHANGED
|
@@ -701,6 +701,8 @@ export const categories = {
|
|
|
701
701
|
"CcVisaIcon",
|
|
702
702
|
],
|
|
703
703
|
Custom: [
|
|
704
|
+
"BookProjectWfIcon",
|
|
705
|
+
"BooksWfIcon",
|
|
704
706
|
"CountsTowardsGradeIcon",
|
|
705
707
|
"CreditNoCreditIcon",
|
|
706
708
|
"DroppedIcon",
|
|
@@ -717,6 +719,8 @@ export const categories = {
|
|
|
717
719
|
"MtIcon",
|
|
718
720
|
"NonMindtapActivityIcon",
|
|
719
721
|
"PracticeIcon",
|
|
722
|
+
"ProjectWfIcon",
|
|
723
|
+
"TasksWfIcon",
|
|
720
724
|
"UnitIcon",
|
|
721
725
|
"WlGotItIcon",
|
|
722
726
|
"WlLearnItIcon",
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/******************************************************
|
|
2
|
+
* This file was created by scripts/generate.js as part
|
|
3
|
+
* of the build process. Do not edit this file directly.
|
|
4
|
+
******************************************************/
|
|
5
|
+
|
|
6
|
+
import { IconProps } from "../../IconProps";
|
|
7
|
+
import { renderIcon } from "../../SvgIcon";
|
|
8
|
+
const iconType = {
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
paths: [
|
|
11
|
+
{
|
|
12
|
+
d: "M10.14 10.75l3 2.25V4h4v9h2V4c0-1.1-.9-2-2-2h-12c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h5v-2h-5V4h2v9l3-2.25z",
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
d: "M19.37 15.79l-.63 2.87c-.15.71-.24 1.21-.28 1.5-.03-.22-.09-.56-.17-1.02-.08-.46-.17-.85-.25-1.2l-.49-2.16h-1.43l-.5 2.16c-.08.3-.16.68-.24 1.13-.08.45-.15.82-.18 1.08-.05-.38-.15-.88-.29-1.51l-.62-2.86H12.8l1.41 5.71h1.82c.33-1.5.52-2.35.57-2.56.05-.21.09-.44.14-.69.05-.25.08-.46.1-.63.03.21.07.47.12.78.05.31.1.52.12.62l.55 2.49h1.82l1.41-5.71h-1.49z",
|
|
16
|
+
},
|
|
17
|
+
],
|
|
18
|
+
circles: [],
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export const BookProjectWfIcon = (props: IconProps) =>
|
|
22
|
+
renderIcon(props, iconType);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/******************************************************
|
|
2
|
+
* This file was created by scripts/generate.js as part
|
|
3
|
+
* of the build process. Do not edit this file directly.
|
|
4
|
+
******************************************************/
|
|
5
|
+
|
|
6
|
+
import { IconProps } from "../../IconProps";
|
|
7
|
+
import { renderIcon } from "../../SvgIcon";
|
|
8
|
+
const iconType = {
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
paths: [
|
|
11
|
+
{
|
|
12
|
+
d: "M12.75 15h-6V9c0-.55-.45-1-1-1s-1 .45-1 1v6c0 1.1.9 2 2 2h6c.55 0 1-.45 1-1s-.45-1-1-1z",
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
d: "M10.75 13h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2zm0-6h8v4h-8V7zM9.75 19h-7v-6c0-.55-.45-1-1-1s-1 .45-1 1v6c0 1.1.9 2 2 2h7c.55 0 1-.45 1-1s-.45-1-1-1zM21.76 14.79l-.63 2.87c-.15.71-.24 1.21-.28 1.5-.03-.22-.09-.56-.17-1.02-.08-.46-.17-.85-.25-1.2l-.49-2.16h-1.43l-.5 2.16c-.08.3-.16.68-.24 1.13-.08.45-.15.82-.18 1.08-.05-.38-.15-.88-.29-1.51l-.62-2.86h-1.49l1.41 5.71h1.82c.33-1.5.52-2.35.57-2.56.05-.21.09-.44.14-.69.05-.25.08-.46.1-.63.03.21.07.47.12.78.05.31.1.52.12.62l.55 2.49h1.82l1.41-5.71h-1.49z",
|
|
16
|
+
},
|
|
17
|
+
],
|
|
18
|
+
circles: [],
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export const BooksWfIcon = (props: IconProps) => renderIcon(props, iconType);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/******************************************************
|
|
2
|
+
* This file was created by scripts/generate.js as part
|
|
3
|
+
* of the build process. Do not edit this file directly.
|
|
4
|
+
******************************************************/
|
|
5
|
+
|
|
6
|
+
import { IconProps } from "../../IconProps";
|
|
7
|
+
import { renderIcon } from "../../SvgIcon";
|
|
8
|
+
const iconType = {
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
paths: [
|
|
11
|
+
{
|
|
12
|
+
d: "M10.56 20.58H5.07v-15h2v3h8v-3h2v6.5c0 .28.23.5.51.5h.98c.28 0 .51-.22.51-.5v-6.5c0-1.1-.9-2-2-2h-3.18c-.42-1.16-1.52-2-2.82-2-1.3 0-2.4.84-2.82 2H5.07c-1.1 0-2 .9-2 2v15c0 1.1.9 2 2 2h5.5c.28 0 .5-.23.5-.5v-.99c0-.28-.23-.5-.5-.5l-.01-.01zm.5-17c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z",
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
d: "M19.62 14.87l-.63 2.87c-.15.71-.24 1.21-.28 1.5-.03-.22-.09-.56-.17-1.02-.08-.46-.17-.85-.25-1.2l-.49-2.16h-1.43l-.5 2.16c-.08.3-.16.68-.24 1.13-.08.45-.15.82-.18 1.08-.05-.38-.15-.88-.29-1.51l-.62-2.86h-1.49l1.41 5.71h1.82c.33-1.5.52-2.35.57-2.56.05-.21.09-.44.14-.69.05-.25.08-.46.1-.63.03.21.07.47.12.78.05.31.1.52.12.62l.55 2.49h1.82l1.41-5.71h-1.49z",
|
|
16
|
+
},
|
|
17
|
+
],
|
|
18
|
+
circles: [],
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export const ProjectWfIcon = (props: IconProps) => renderIcon(props, iconType);
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/******************************************************
|
|
2
|
+
* This file was created by scripts/generate.js as part
|
|
3
|
+
* of the build process. Do not edit this file directly.
|
|
4
|
+
******************************************************/
|
|
5
|
+
|
|
6
|
+
import { IconProps } from "../../IconProps";
|
|
7
|
+
import { renderIcon } from "../../SvgIcon";
|
|
8
|
+
const iconType = {
|
|
9
|
+
viewBox: "0 0 24 24",
|
|
10
|
+
paths: [
|
|
11
|
+
{
|
|
12
|
+
d: "M7.29 11.68a.9959.9959 0 00-1.41 0c-.39.39-.39 1.02 0 1.41l2.83 2.83c.39.39 1.02.39 1.41 0l10-10a.987.987 0 00-.01-1.41.9959.9959 0 00-1.41 0L9.41 13.8l-2.12-2.12z",
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
d: "M13.55 19.55c-.85.31-1.77.48-2.72.48-4.71 0-8.48-4.09-7.95-8.9C3.27 7.61 6 4.72 9.49 4.14c1.81-.3 3.53.02 4.99.78.39.2.86.13 1.17-.18.48-.48.36-1.29-.24-1.6-1.47-.75-3.13-1.16-4.9-1.11C5.37 2.19 1.1 6.37.84 11.5c-.29 5.77 4.29 10.53 9.99 10.53 1.2 0 2.34-.21 3.41-.6.68-.25.87-1.13.35-1.65-.27-.27-.68-.37-1.04-.23z",
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
d: "M21.96 12.81l-.63 2.87c-.15.71-.24 1.21-.28 1.5-.03-.22-.09-.56-.17-1.02-.08-.46-.17-.85-.25-1.2l-.49-2.16h-1.43l-.5 2.16c-.08.3-.16.68-.24 1.13-.08.45-.15.82-.18 1.08-.05-.38-.15-.88-.29-1.51l-.62-2.86h-1.49l1.41 5.71h1.82c.33-1.5.52-2.35.57-2.56.05-.21.09-.44.14-.69.05-.25.08-.46.1-.63.03.21.07.47.12.78.05.31.1.52.12.62l.55 2.49h1.82l1.41-5.71h-1.49z",
|
|
19
|
+
},
|
|
20
|
+
],
|
|
21
|
+
circles: [],
|
|
22
|
+
};
|
|
23
|
+
|
|
24
|
+
export const TasksWfIcon = (props: IconProps) => renderIcon(props, iconType);
|
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
* of the build process. Do not edit this file directly.
|
|
4
4
|
******************************************************/
|
|
5
5
|
|
|
6
|
+
export { BookProjectWfIcon } from "./BookProjectWfIcon";
|
|
7
|
+
export { BooksWfIcon } from "./BooksWfIcon";
|
|
6
8
|
export { CountsTowardsGradeIcon } from "./CountsTowardsGradeIcon";
|
|
7
9
|
export { CreditNoCreditIcon } from "./CreditNoCreditIcon";
|
|
8
10
|
export { DroppedIcon } from "./DroppedIcon";
|
|
@@ -19,6 +21,8 @@ export { ManualGradedIcon } from "./ManualGradedIcon";
|
|
|
19
21
|
export { MtIcon } from "./MtIcon";
|
|
20
22
|
export { NonMindtapActivityIcon } from "./NonMindtapActivityIcon";
|
|
21
23
|
export { PracticeIcon } from "./PracticeIcon";
|
|
24
|
+
export { ProjectWfIcon } from "./ProjectWfIcon";
|
|
25
|
+
export { TasksWfIcon } from "./TasksWfIcon";
|
|
22
26
|
export { UnitIcon } from "./UnitIcon";
|
|
23
27
|
export { WlGotItIcon } from "./WlGotItIcon";
|
|
24
28
|
export { WlLearnItIcon } from "./WlLearnItIcon";
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M10.14 10.75L13.14 13V4H17.14V13H19.14V4C19.14 2.9 18.24 2 17.14 2H5.14C4.04 2 3.14 2.9 3.14 4V20C3.14 21.1 4.04 22 5.14 22H10.14V20H5.14V4H7.14V13L10.14 10.75Z" fill="black"/>
|
|
4
|
+
<path d="M19.37 15.79L18.74 18.66C18.59 19.37 18.5 19.87 18.46 20.16C18.43 19.94 18.37 19.6 18.29 19.14C18.21 18.68 18.12 18.29 18.04 17.94L17.55 15.78H16.12L15.62 17.94C15.54 18.24 15.46 18.62 15.38 19.07C15.3 19.52 15.23 19.89 15.2 20.15C15.15 19.77 15.05 19.27 14.91 18.64L14.29 15.78H12.8L14.21 21.49H16.03C16.36 19.99 16.55 19.14 16.6 18.93C16.65 18.72 16.69 18.49 16.74 18.24C16.79 17.99 16.82 17.78 16.84 17.61C16.87 17.82 16.91 18.08 16.96 18.39C17.01 18.7 17.06 18.91 17.08 19.01L17.63 21.5H19.45L20.86 15.79H19.37Z" fill="black"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M12.75 15H6.75V9C6.75 8.45 6.3 8 5.75 8C5.2 8 4.75 8.45 4.75 9V15C4.75 16.1 5.65 17 6.75 17H12.75C13.3 17 13.75 16.55 13.75 16C13.75 15.45 13.3 15 12.75 15Z" fill="black"/>
|
|
4
|
+
<path d="M10.75 13H18.75C19.85 13 20.75 12.1 20.75 11V5C20.75 3.9 19.85 3 18.75 3H10.75C9.65 3 8.75 3.9 8.75 5V11C8.75 12.1 9.65 13 10.75 13ZM10.75 7H18.75V11H10.75V7Z" fill="black"/>
|
|
5
|
+
<path d="M9.75 19H2.75V13C2.75 12.45 2.3 12 1.75 12C1.2 12 0.75 12.45 0.75 13V19C0.75 20.1 1.65 21 2.75 21H9.75C10.3 21 10.75 20.55 10.75 20C10.75 19.45 10.3 19 9.75 19Z" fill="black"/>
|
|
6
|
+
<path d="M21.76 14.79L21.13 17.66C20.98 18.37 20.89 18.87 20.85 19.16C20.82 18.94 20.76 18.6 20.68 18.14C20.6 17.68 20.51 17.29 20.43 16.94L19.94 14.78H18.51L18.01 16.94C17.93 17.24 17.85 17.62 17.77 18.07C17.69 18.52 17.62 18.89 17.59 19.15C17.54 18.77 17.44 18.27 17.3 17.64L16.68 14.78H15.19L16.6 20.49H18.42C18.75 18.99 18.94 18.14 18.99 17.93C19.04 17.72 19.08 17.49 19.13 17.24C19.18 16.99 19.21 16.78 19.23 16.61C19.26 16.82 19.3 17.08 19.35 17.39C19.4 17.7 19.45 17.91 19.47 18.01L20.02 20.5H21.84L23.25 14.79H21.76Z" fill="black"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M10.56 20.58H5.07V5.57999H7.07V8.57999H15.07V5.57999H17.07V12.08C17.07 12.36 17.3 12.58 17.58 12.58C17.95 12.58 18.23 12.58 18.56 12.58C18.84 12.58 19.07 12.36 19.07 12.08V5.57999C19.07 4.47999 18.17 3.57999 17.07 3.57999H13.89C13.47 2.41999 12.37 1.57999 11.07 1.57999C9.77 1.57999 8.67 2.41999 8.25 3.57999H5.07C3.97 3.57999 3.07 4.47999 3.07 5.57999V20.58C3.07 21.68 3.97 22.58 5.07 22.58H10.57C10.85 22.58 11.07 22.35 11.07 22.08V21.09C11.07 20.81 10.84 20.59 10.57 20.59L10.56 20.58ZM11.06 3.57999C11.61 3.57999 12.06 4.02999 12.06 4.57999C12.06 5.12999 11.61 5.57999 11.06 5.57999C10.51 5.57999 10.06 5.12999 10.06 4.57999C10.06 4.02999 10.51 3.57999 11.06 3.57999Z" fill="black"/>
|
|
4
|
+
<path d="M19.62 14.87L18.99 17.74C18.84 18.45 18.75 18.95 18.71 19.24C18.68 19.02 18.62 18.68 18.54 18.22C18.46 17.76 18.37 17.37 18.29 17.02L17.8 14.86H16.37L15.87 17.02C15.79 17.32 15.71 17.7 15.63 18.15C15.55 18.6 15.48 18.97 15.45 19.23C15.4 18.85 15.3 18.35 15.16 17.72L14.54 14.86H13.05L14.46 20.57H16.28C16.61 19.07 16.8 18.22 16.85 18.01C16.9 17.8 16.94 17.57 16.99 17.32C17.04 17.07 17.07 16.86 17.09 16.69C17.12 16.9 17.16 17.16 17.21 17.47C17.26 17.78 17.31 17.99 17.33 18.09L17.88 20.58H19.7L21.11 14.87H19.62Z" fill="black"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none"
|
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M7.29 11.68C6.9 11.29 6.27 11.29 5.88 11.68C5.49 12.07 5.49 12.7 5.88 13.09L8.71 15.92C9.1 16.31 9.73 16.31 10.12 15.92L20.12 5.92001C20.51 5.53001 20.51 4.90001 20.11 4.51001C19.72 4.12001 19.09 4.12001 18.7 4.51001L9.41 13.8L7.29 11.68Z" fill="black"/>
|
|
4
|
+
<path d="M13.55 19.55C12.7 19.86 11.78 20.03 10.83 20.03C6.12 20.03 2.35 15.94 2.88 11.13C3.27 7.61 6 4.72 9.49 4.14C11.3 3.84 13.02 4.16001 14.48 4.92001C14.87 5.12001 15.34 5.05 15.65 4.74C16.13 4.26 16.01 3.45001 15.41 3.14001C13.94 2.39001 12.28 1.98 10.51 2.03C5.37 2.19 1.1 6.37 0.840001 11.5C0.550001 17.27 5.13 22.03 10.83 22.03C12.03 22.03 13.17 21.82 14.24 21.43C14.92 21.18 15.11 20.3 14.59 19.78C14.32 19.51 13.91 19.41 13.55 19.55Z" fill="black"/>
|
|
5
|
+
<path d="M21.96 12.81L21.33 15.68C21.18 16.39 21.09 16.89 21.05 17.18C21.02 16.96 20.96 16.62 20.88 16.16C20.8 15.7 20.71 15.31 20.63 14.96L20.14 12.8H18.71L18.21 14.96C18.13 15.26 18.05 15.64 17.97 16.09C17.89 16.54 17.82 16.91 17.79 17.17C17.74 16.79 17.64 16.29 17.5 15.66L16.88 12.8H15.39L16.8 18.51H18.62C18.95 17.01 19.14 16.16 19.19 15.95C19.24 15.74 19.28 15.51 19.33 15.26C19.38 15.01 19.41 14.8 19.43 14.63C19.46 14.84 19.5 15.1 19.55 15.41C19.6 15.72 19.65 15.93 19.67 16.03L20.22 18.52H22.04L23.45 12.81H21.96Z" fill="black"/>
|
|
6
|
+
</svg>
|