react-magma-icons 3.1.0 → 3.2.1
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/dist/categories.esm.js +3 -3
- package/dist/categories.esm.js.map +1 -1
- package/dist/icons/Actions/QuestionMarkIcon.d.ts +7 -0
- package/dist/icons/Actions/QuestionMarkIcon.esm.js +19 -0
- package/dist/icons/Actions/QuestionMarkIcon.esm.js.map +1 -0
- package/dist/icons/Actions/index.d.ts +1 -0
- package/dist/icons/Custom/MediaIcon.d.ts +7 -0
- package/dist/icons/Custom/MediaIcon.esm.js +19 -0
- package/dist/icons/Custom/MediaIcon.esm.js.map +1 -0
- package/dist/icons/Custom/NotebookIcon.d.ts +7 -0
- package/dist/icons/Custom/NotebookIcon.esm.js +19 -0
- package/dist/icons/Custom/NotebookIcon.esm.js.map +1 -0
- package/dist/icons/Custom/index.d.ts +2 -0
- package/dist/icons/Device/PhishingIcon.d.ts +7 -0
- package/dist/icons/Device/PhishingIcon.esm.js +19 -0
- package/dist/icons/Device/PhishingIcon.esm.js.map +1 -0
- package/dist/icons/Device/TargetIcon.d.ts +7 -0
- package/dist/icons/Device/TargetIcon.esm.js +19 -0
- package/dist/icons/Device/TargetIcon.esm.js.map +1 -0
- package/dist/icons/Device/index.d.ts +2 -0
- package/dist/index.esm.js +5 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/react-magma-icons.cjs.development.js +2938 -2858
- 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 +4 -4
- package/src/categories.ts +5 -0
- package/src/icons/Actions/QuestionMarkIcon.tsx +19 -0
- package/src/icons/Actions/index.ts +1 -0
- package/src/icons/Custom/MediaIcon.tsx +18 -0
- package/src/icons/Custom/NotebookIcon.tsx +18 -0
- package/src/icons/Custom/index.ts +2 -0
- package/src/icons/Device/PhishingIcon.tsx +18 -0
- package/src/icons/Device/TargetIcon.tsx +18 -0
- package/src/icons/Device/index.ts +2 -0
- package/src/svg/icons/Actions/question_mark.svg +1 -0
- package/src/svg/icons/Custom/media.svg +3 -0
- package/src/svg/icons/Custom/notebook.svg +3 -0
- package/src/svg/icons/Device/phishing.svg +1 -0
- package/src/svg/icons/Device/target.svg +1 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-magma-icons",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "3.1
|
|
4
|
+
"version": "3.2.1",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
7
7
|
"typings": "dist/index.d.ts",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"prettier": "prettier --write --loglevel warn --ignore-path .eslintignore \"src/**/*.{js,jsx,ts,tsx,json}\""
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"react": "
|
|
33
|
-
"react-dom": "
|
|
32
|
+
"react": ">=17.0.2",
|
|
33
|
+
"react-dom": ">=17.0.2",
|
|
34
34
|
"uuid": "^8.3.0 || ^9.0.0 || ^10.0.0 || ^11.0.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@types/node": "^17.0.39",
|
|
57
|
-
"@types/react": "
|
|
57
|
+
"@types/react": ">=17.0.5",
|
|
58
58
|
"@types/uuid": "^10.0.0"
|
|
59
59
|
},
|
|
60
60
|
"peerDependenciesMeta": {
|
package/src/categories.ts
CHANGED
|
@@ -361,6 +361,7 @@ export const categories = {
|
|
|
361
361
|
"PublishedWithChangesIcon",
|
|
362
362
|
"QueryBuilderIcon",
|
|
363
363
|
"QuestionAnswerIcon",
|
|
364
|
+
"QuestionMarkIcon",
|
|
364
365
|
"QuickreplyIcon",
|
|
365
366
|
"ReceiptIcon",
|
|
366
367
|
"RecordVoiceOverIcon",
|
|
@@ -718,8 +719,10 @@ export const categories = {
|
|
|
718
719
|
"LatePenaltyIcon",
|
|
719
720
|
"LightbulbOnIcon",
|
|
720
721
|
"ManualGradedIcon",
|
|
722
|
+
"MediaIcon",
|
|
721
723
|
"MtIcon",
|
|
722
724
|
"NonMindtapActivityIcon",
|
|
725
|
+
"NotebookIcon",
|
|
723
726
|
"PracticeIcon",
|
|
724
727
|
"ProjectWfIcon",
|
|
725
728
|
"TasksWfIcon",
|
|
@@ -825,6 +828,7 @@ export const categories = {
|
|
|
825
828
|
"NoteAltIcon",
|
|
826
829
|
"PasswordIcon",
|
|
827
830
|
"PatternIcon",
|
|
831
|
+
"PhishingIcon",
|
|
828
832
|
"PinIcon",
|
|
829
833
|
"PlayLessonIcon",
|
|
830
834
|
"PriceChangeIcon",
|
|
@@ -872,6 +876,7 @@ export const categories = {
|
|
|
872
876
|
"SystemSecurityUpdateIcon",
|
|
873
877
|
"SystemSecurityUpdateGoodIcon",
|
|
874
878
|
"SystemSecurityUpdateWarningIcon",
|
|
879
|
+
"TargetIcon",
|
|
875
880
|
"TaskIcon",
|
|
876
881
|
"ThermostatIcon",
|
|
877
882
|
"Timer10SelectIcon",
|
|
@@ -0,0 +1,19 @@
|
|
|
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 -960 960 960",
|
|
10
|
+
paths: [
|
|
11
|
+
{
|
|
12
|
+
d: "M584-637q0-43-28.5-69T480-732q-29 0-52.5 12.5T387-683q-16 23-43.5 26.5T296-671q-14-13-15.5-32t9.5-36q32-48 81.5-74.5T480-840q97 0 157.5 55T698-641q0 45-19 81t-70 85q-37 35-50 54.5T542-376q-4 24-20.5 40T482-320q-23 0-39.5-15.5T426-374q0-39 17-71.5t57-68.5q51-45 67.5-69.5T584-637zM480-80q-33 0-56.5-23.5T400-160q0-33 23.5-56.5T480-240q33 0 56.5 23.5T560-160q0 33-23.5 56.5T480-80z",
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
circles: [],
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export const QuestionMarkIcon = (props: IconProps) =>
|
|
19
|
+
renderIcon(props, iconType);
|
|
@@ -242,6 +242,7 @@ export { ProductionQuantityLimitsIcon } from "./ProductionQuantityLimitsIcon";
|
|
|
242
242
|
export { PublishedWithChangesIcon } from "./PublishedWithChangesIcon";
|
|
243
243
|
export { QueryBuilderIcon } from "./QueryBuilderIcon";
|
|
244
244
|
export { QuestionAnswerIcon } from "./QuestionAnswerIcon";
|
|
245
|
+
export { QuestionMarkIcon } from "./QuestionMarkIcon";
|
|
245
246
|
export { QuickreplyIcon } from "./QuickreplyIcon";
|
|
246
247
|
export { ReceiptIcon } from "./ReceiptIcon";
|
|
247
248
|
export { RecordVoiceOverIcon } from "./RecordVoiceOverIcon";
|
|
@@ -0,0 +1,18 @@
|
|
|
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 1c.6074 0 1.0994.4923 1.0996 1.0996v5.6387c.4035.1038.7838.265 1.1338.4717l3.9893-3.9883c.4295-.4295 1.1261-.4296 1.5556 0 .4295.4295.4295 1.126 0 1.5556l-3.9892 3.9883c.207.3503.3687.7308.4726 1.1348h5.6387C22.5077 10.9006 23 11.3926 23 12c0 .6074-.4923 1.0994-1.0996 1.0996h-5.6387c-.1038.4037-.2658.7837-.4726 1.1338l3.9892 3.9893c.4295.4295.4296 1.1261 0 1.5556-.4295.4295-1.1261.4295-1.5556 0l-3.9893-3.9892c-.3501.2068-.7301.3688-1.1338.4726v5.6387C13.0994 22.5077 12.6074 23 12 23c-.6074 0-1.0994-.4923-1.0996-1.0996v-5.6387a4.3701 4.3701 0 01-1.1348-.4726l-3.9883 3.9892c-.4295.4295-1.126.4296-1.5556 0-.4296-.4295-.4295-1.1261 0-1.5556L8.21 14.2334a4.3718 4.3718 0 01-.4717-1.1338H2.0996C1.4923 13.0994 1 12.6074 1 12c0-.6074.4923-1.0994 1.0996-1.0996h5.6387A4.372 4.372 0 018.21 9.7656L4.2217 5.7773c-.4295-.4295-.4295-1.126 0-1.5556.4295-.4296 1.126-.4295 1.5556 0L9.7656 8.21a4.372 4.372 0 011.1348-.4717V2.0996C10.9006 1.4923 11.3926 1 12 1zm0 8.7998c-1.215 0-2.2002.9852-2.2002 2.2002 0 1.215.9852 2.2002 2.2002 2.2002 1.215 0 2.2002-.9852 2.2002-2.2002 0-1.215-.9852-2.2002-2.2002-2.2002z",
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
circles: [],
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export const MediaIcon = (props: IconProps) => renderIcon(props, iconType);
|
|
@@ -0,0 +1,18 @@
|
|
|
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: "M17.9982 2c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2h-12c-1.1 0-2-.9-2-2L4 19H2.0001c-.0001-.5.0003.044 0-.7842V17H4l-.0019-2H2c0-.5.0004.044.0001-.7842L2 13h1.9981v-2H2c0-.2158.0004.044.0001-.7842L2 9h1.9981V7h-1.998c-.0001-.2158.0003.044 0-.7842L2 5h1.9981V4c0-1.1.9-2 2-2h12.0001zM8.0001 5.7158v4h8v-4h-8z",
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
circles: [],
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export const NotebookIcon = (props: IconProps) => renderIcon(props, iconType);
|
|
@@ -18,8 +18,10 @@ export { GithubIcon } from "./GithubIcon";
|
|
|
18
18
|
export { LatePenaltyIcon } from "./LatePenaltyIcon";
|
|
19
19
|
export { LightbulbOnIcon } from "./LightbulbOnIcon";
|
|
20
20
|
export { ManualGradedIcon } from "./ManualGradedIcon";
|
|
21
|
+
export { MediaIcon } from "./MediaIcon";
|
|
21
22
|
export { MtIcon } from "./MtIcon";
|
|
22
23
|
export { NonMindtapActivityIcon } from "./NonMindtapActivityIcon";
|
|
24
|
+
export { NotebookIcon } from "./NotebookIcon";
|
|
23
25
|
export { PracticeIcon } from "./PracticeIcon";
|
|
24
26
|
export { ProjectWfIcon } from "./ProjectWfIcon";
|
|
25
27
|
export { TasksWfIcon } from "./TasksWfIcon";
|
|
@@ -0,0 +1,18 @@
|
|
|
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 -960 960 960",
|
|
10
|
+
paths: [
|
|
11
|
+
{
|
|
12
|
+
d: "M440-120q-100 0-170-70t-70-170v-192q0-14 12-19t22 5l138 138q11 11 11 27.5T372-372q-12 12-28.5 12T315-372l-35-35v47q0 66 47 113t113 47q66 0 113-47t47-113v-127q-36-14-58-44.5T520-600q0-38 22-68.5t58-44.5v-127q0-17 11.5-28.5T640-880q17 0 28.5 11.5T680-840v127q36 14 58 44.5t22 68.5q0 38-22 69t-58 44v127q0 100-70 170t-170 70zm200-440q17 0 28.5-11.5T680-600q0-17-11.5-28.5T640-640q-17 0-28.5 11.5T600-600q0 17 11.5 28.5T640-560zm0-40z",
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
circles: [],
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export const PhishingIcon = (props: IconProps) => renderIcon(props, iconType);
|
|
@@ -0,0 +1,18 @@
|
|
|
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 -960 960 960",
|
|
10
|
+
paths: [
|
|
11
|
+
{
|
|
12
|
+
d: "M480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93zm0-80q-100 0-170-70t-70-170q0-100 70-170t170-70q100 0 170 70t70 170q0 100-70 170t-170 70zm0-80q66 0 113-47t47-113q0-66-47-113t-113-47q-66 0-113 47t-47 113q0 66 47 113t113 47zm0-80q-33 0-56.5-23.5T400-480q0-33 23.5-56.5T480-560q33 0 56.5 23.5T560-480q0 33-23.5 56.5T480-400z",
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
circles: [],
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export const TargetIcon = (props: IconProps) => renderIcon(props, iconType);
|
|
@@ -97,6 +97,7 @@ export { NightlightIcon } from "./NightlightIcon";
|
|
|
97
97
|
export { NoteAltIcon } from "./NoteAltIcon";
|
|
98
98
|
export { PasswordIcon } from "./PasswordIcon";
|
|
99
99
|
export { PatternIcon } from "./PatternIcon";
|
|
100
|
+
export { PhishingIcon } from "./PhishingIcon";
|
|
100
101
|
export { PinIcon } from "./PinIcon";
|
|
101
102
|
export { PlayLessonIcon } from "./PlayLessonIcon";
|
|
102
103
|
export { PriceChangeIcon } from "./PriceChangeIcon";
|
|
@@ -144,6 +145,7 @@ export { SummarizeIcon } from "./SummarizeIcon";
|
|
|
144
145
|
export { SystemSecurityUpdateIcon } from "./SystemSecurityUpdateIcon";
|
|
145
146
|
export { SystemSecurityUpdateGoodIcon } from "./SystemSecurityUpdateGoodIcon";
|
|
146
147
|
export { SystemSecurityUpdateWarningIcon } from "./SystemSecurityUpdateWarningIcon";
|
|
148
|
+
export { TargetIcon } from "./TargetIcon";
|
|
147
149
|
export { TaskIcon } from "./TaskIcon";
|
|
148
150
|
export { ThermostatIcon } from "./ThermostatIcon";
|
|
149
151
|
export { Timer10SelectIcon } from "./Timer10SelectIcon";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e8eaed"><path d="M584-637q0-43-28.5-69T480-732q-29 0-52.5 12.5T387-683q-16 23-43.5 26.5T296-671q-14-13-15.5-32t9.5-36q32-48 81.5-74.5T480-840q97 0 157.5 55T698-641q0 45-19 81t-70 85q-37 35-50 54.5T542-376q-4 24-20.5 40T482-320q-23 0-39.5-15.5T426-374q0-39 17-71.5t57-68.5q51-45 67.5-69.5T584-637ZM480-80q-33 0-56.5-23.5T400-160q0-33 23.5-56.5T480-240q33 0 56.5 23.5T560-160q0 33-23.5 56.5T480-80Z"/></svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12 1C12.6074 1 13.0994 1.49228 13.0996 2.09961V7.73828C13.5031 7.84209 13.8834 8.00326 14.2334 8.20996L18.2227 4.22168C18.6522 3.79224 19.3488 3.79215 19.7783 4.22168C20.2078 4.65121 20.2078 5.34776 19.7783 5.77734L15.7891 9.76562C15.9961 10.1159 16.1578 10.4964 16.2617 10.9004H21.9004C22.5077 10.9006 23 11.3926 23 12C23 12.6074 22.5077 13.0994 21.9004 13.0996H16.2617C16.1579 13.5033 15.9959 13.8833 15.7891 14.2334L19.7783 18.2227C20.2078 18.6522 20.2079 19.3488 19.7783 19.7783C19.3488 20.2078 18.6522 20.2078 18.2227 19.7783L14.2334 15.7891C13.8833 15.9959 13.5033 16.1579 13.0996 16.2617V21.9004C13.0994 22.5077 12.6074 23 12 23C11.3926 23 10.9006 22.5077 10.9004 21.9004V16.2617C10.4964 16.1578 10.1159 15.9961 9.76562 15.7891L5.77734 19.7783C5.34776 20.2078 4.65122 20.2079 4.22168 19.7783C3.79214 19.3488 3.79223 18.6522 4.22168 18.2227L8.20996 14.2334C8.00326 13.8834 7.84209 13.5031 7.73828 13.0996H2.09961C1.49228 13.0994 1 12.6074 1 12C1 11.3926 1.49228 10.9006 2.09961 10.9004H7.73828C7.84216 10.4966 8.00306 10.1158 8.20996 9.76562L4.22168 5.77734C3.79225 5.34776 3.79217 4.65121 4.22168 4.22168C4.65121 3.79215 5.34776 3.79224 5.77734 4.22168L9.76562 8.20996C10.1158 8.00306 10.4966 7.84216 10.9004 7.73828V2.09961C10.9006 1.49228 11.3926 1 12 1ZM12 9.7998C10.785 9.7998 9.7998 10.785 9.7998 12C9.79981 13.215 10.785 14.2002 12 14.2002C13.215 14.2002 14.2002 13.215 14.2002 12C14.2002 10.785 13.215 9.79981 12 9.7998Z" fill="#454545"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.9982 2C19.0982 2 19.9982 2.9 19.9982 4V20C19.9982 21.1 19.0982 22 17.9982 22H5.99815C4.89815 22 3.99815 21.1 3.99815 20L4 19H2.00011C2 18.5 2.00036 19.044 2.00011 18.2158C2.00011 17.3874 2 17.5 2.00011 17H4L3.99815 15H2C2 14.5 2.00036 15.044 2.00011 14.2158C2.00011 13.3874 2 13.5 2 13H3.99815V11H2C2 10.7842 2.00036 11.044 2.00011 10.2158C2.00011 9.38739 2 9.28418 2 9H3.99815V7H2.00011C2 6.78418 2.00036 7.04403 2.00011 6.21582C2.00011 5.38739 2 5.78418 2 5H3.99815V4C3.99815 2.9 4.89815 2 5.99815 2H17.9982ZM8.0001 5.71582V9.71582H16.0001V5.71582H8.0001Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e8eaed"><path d="M440-120q-100 0-170-70t-70-170v-192q0-14 12-19t22 5l138 138q11 11 11 27.5T372-372q-12 12-28.5 12T315-372l-35-35v47q0 66 47 113t113 47q66 0 113-47t47-113v-127q-36-14-58-44.5T520-600q0-38 22-68.5t58-44.5v-127q0-17 11.5-28.5T640-880q17 0 28.5 11.5T680-840v127q36 14 58 44.5t22 68.5q0 38-22 69t-58 44v127q0 100-70 170t-170 70Zm200-440q17 0 28.5-11.5T680-600q0-17-11.5-28.5T640-640q-17 0-28.5 11.5T600-600q0 17 11.5 28.5T640-560Zm0-40Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e8eaed"><path d="M480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-80q-100 0-170-70t-70-170q0-100 70-170t170-70q100 0 170 70t70 170q0 100-70 170t-170 70Zm0-80q66 0 113-47t47-113q0-66-47-113t-113-47q-66 0-113 47t-47 113q0 66 47 113t113 47Zm0-80q-33 0-56.5-23.5T400-480q0-33 23.5-56.5T480-560q33 0 56.5 23.5T560-480q0 33-23.5 56.5T480-400Z"/></svg>
|