Skip to content

Commit e48ed76

Browse files
committed
move missing icons into local svgs
1 parent fd4eb45 commit e48ed76

File tree

6 files changed

+42
-18
lines changed

6 files changed

+42
-18
lines changed

src/packages/core/icon-registry/icon-dictionary.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2451,10 +2451,6 @@
24512451
}
24522452
],
24532453
"simpleIcons": [
2454-
{
2455-
"name": "icon-azure",
2456-
"file": "microsoftazure.svg"
2457-
},
24582454
{
24592455
"name": "icon-facebook",
24602456
"file": "facebook.svg"
@@ -2483,10 +2479,6 @@
24832479
"name": "icon-mastodon",
24842480
"file": "mastodon.svg"
24852481
},
2486-
{
2487-
"name": "icon-microsoft",
2488-
"file": "microsoft.svg"
2489-
},
24902482
{
24912483
"name": "icon-twitter-x",
24922484
"file": "x.svg"
@@ -2496,6 +2488,14 @@
24962488
{
24972489
"name": "icon-umbraco",
24982490
"file": "icon-umbraco.svg"
2491+
},
2492+
{
2493+
"name": "icon-microsoft",
2494+
"file": "icon-microsoft.svg"
2495+
},
2496+
{
2497+
"name": "icon-azure",
2498+
"file": "icon-microsoftazure.svg"
24992499
}
25002500
]
25012501
}

src/packages/core/icon-registry/icons.ts

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2099,10 +2099,6 @@ name: "icon-database",
20992099

21002100
path: () => import("./icons/icon-database.js"),
21012101
},{
2102-
name: "icon-azure",
2103-
2104-
path: () => import("./icons/icon-azure.js"),
2105-
},{
21062102
name: "icon-facebook",
21072103

21082104
path: () => import("./icons/icon-facebook.js"),
@@ -2131,10 +2127,6 @@ name: "icon-mastodon",
21312127

21322128
path: () => import("./icons/icon-mastodon.js"),
21332129
},{
2134-
name: "icon-microsoft",
2135-
2136-
path: () => import("./icons/icon-microsoft.js"),
2137-
},{
21382130
name: "icon-twitter-x",
21392131

21402132
path: () => import("./icons/icon-twitter-x.js"),
@@ -2143,6 +2135,14 @@ name: "icon-umbraco",
21432135

21442136
path: () => import("./icons/icon-umbraco.js"),
21452137
},{
2138+
name: "icon-microsoft",
2139+
2140+
path: () => import("./icons/icon-microsoft.js"),
2141+
},{
2142+
name: "icon-azure",
2143+
2144+
path: () => import("./icons/icon-azure.js"),
2145+
},{
21462146
name: "icon-art-easel",
21472147
legacy: true,
21482148
path: () => import("./icons/icon-art-easel.js"),
@@ -2351,6 +2351,10 @@ name: "icon-male-symbol",
23512351
legacy: true,
23522352
path: () => import("./icons/icon-male-symbol.js"),
23532353
},{
2354+
name: "icon-microsoftazure",
2355+
legacy: true,
2356+
path: () => import("./icons/icon-microsoftazure.js"),
2357+
},{
23542358
name: "icon-molecular-network",
23552359
legacy: true,
23562360
path: () => import("./icons/icon-molecular-network.js"),
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
export default `<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Microsoft Azure</title><path fill="currentColor" d="M22.379 23.343a1.62 1.62 0 0 0 1.536-2.14v.002L17.35 1.76A1.62 1.62 0 0 0 15.816.657H8.184A1.62 1.62 0 0 0 6.65 1.76L.086 21.204a1.62 1.62 0 0 0 1.536 2.139h4.741a1.62 1.62 0 0 0 1.535-1.103l.977-2.892 4.947 3.675c.28.208.618.32.966.32m-3.084-12.531 3.624 10.739a.54.54 0 0 1-.51.713v-.001h-.03a.54.54 0 0 1-.322-.106l-9.287-6.9h4.853m6.313 7.006c.116-.326.13-.694.007-1.058L9.79 1.76a1.722 1.722 0 0 0-.007-.02h6.034a.54.54 0 0 1 .512.366l6.562 19.445a.54.54 0 0 1-.338.684"/></svg>`;
1+
export default `<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2+
<title>Microsoft Azure</title>
3+
<path fill="currentColor"
4+
d="M22.379 23.343a1.62 1.62 0 0 0 1.536-2.14v.002L17.35 1.76A1.62 1.62 0 0 0 15.816.657H8.184A1.62 1.62 0 0 0 6.65 1.76L.086 21.204a1.62 1.62 0 0 0 1.536 2.139h4.741a1.62 1.62 0 0 0 1.535-1.103l.977-2.892 4.947 3.675c.28.208.618.32.966.32m-3.084-12.531 3.624 10.739a.54.54 0 0 1-.51.713v-.001h-.03a.54.54 0 0 1-.322-.106l-9.287-6.9h4.853m6.313 7.006c.116-.326.13-.694.007-1.058L9.79 1.76a1.722 1.722 0 0 0-.007-.02h6.034a.54.54 0 0 1 .512.366l6.562 19.445a.54.54 0 0 1-.338.684" />
5+
</svg>
6+
`;
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
export default `<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Microsoft</title><path fill="currentColor" d="M0 0v11.408h11.408V0zm12.594 0v11.408H24V0zM0 12.594V24h11.408V12.594zm12.594 0V24H24V12.594z"/></svg>`;
1+
export default `<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2+
<title>Microsoft</title>
3+
<path fill="currentColor"
4+
d="M0 0v11.408h11.408V0zm12.594 0v11.408H24V0zM0 12.594V24h11.408V12.594zm12.594 0V24H24V12.594z" />
5+
</svg>
6+
`;
Lines changed: 5 additions & 0 deletions
Loading
Lines changed: 5 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)