Skip to content

Commit 53cea43

Browse files
committed
fixed twitter ligature name bug
1 parent 3b867df commit 53cea43

File tree

13 files changed

+19
-19
lines changed

13 files changed

+19
-19
lines changed

.DS_Store

6 KB
Binary file not shown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![1.41](https://badgen.net/badge/npm/1.41/blue)](https://www.npmjs.com/package/social-icons-webfont)
1+
[![1.41.1](https://badgen.net/badge/npm/1.41.1/blue)](https://www.npmjs.com/package/social-icons-webfont)
22

33
# Social Icons
44
Icon font containing social media branding icons.

demo.html

Lines changed: 4 additions & 4 deletions
Large diffs are not rendered by default.

fonts/SocialIcons.svg

Lines changed: 1 addition & 1 deletion
Loading

fonts/SocialIcons.ttf

0 Bytes
Binary file not shown.

fonts/SocialIcons.woff

0 Bytes
Binary file not shown.

icons.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
* Icons are listed with their display name as the key, and a list of applicable ligatures as the value.
33
*
44
* @example
5-
* icons.Twitter // [ "x", "twitter", "x-twitter", "twitter-x" ]
5+
* icons.Twitter // [ "twitter", "x-twitter", "twitter-x" ]
66
*/
77
export const icons: Record<string, string[]>;

icons.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ export const icons = {
399399
"Tumblr": [ "tumblr" ],
400400
"TuneIn": [ "tunein" ],
401401
"Twitch": [ "twitch" ],
402-
"Twitter": [ "x", "twitter", "x-twitter", "twitter-x" ],
402+
"Twitter": [ "twitter", "x-twitter", "twitter-x" ],
403403
"Uber": [ "uber" ],
404404
"Ubuntu": [ "ubuntu" ],
405405
"Udemy": [ "udemy" ],
@@ -431,7 +431,7 @@ export const icons = {
431431
"WordPress": [ "wordpress" ],
432432
"WorldAnvil": [ "worldanvil" ],
433433
"Wykop": [ "wykop" ],
434-
"X": [ "theplatformformerlyknownastwitter", "unicode-x" ],
434+
"X": [ "theplatformformerlyknownastwitter", "unicode-x", "x" ],
435435
"Xbox": [ "xbox" ],
436436
"Xing": [ "xing" ],
437437
"Yahoo": [ "yahoo" ],

liga.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,6 @@
436436
'tumblr': '&#xe08b;',
437437
'tunein': '&#xe903;',
438438
'twitch': '&#xe08c;',
439-
'x': '&#xea12;',
440439
'twitter': '&#xea12;',
441440
'x-twitter': '&#xea12;',
442441
'twitter-x': '&#xea12;',
@@ -473,6 +472,7 @@
473472
'wykop': '&#xe09d;',
474473
'theplatformformerlyknownastwitter': '&#xe0aa;',
475474
'unicode-x': '&#xe0aa;',
475+
'x': '&#xe0aa;',
476476
'xbox': '&#xe09e;',
477477
'xing': '&#xe09f;',
478478
'ytgaming': '&#xe90b;',

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "social-icons-webfont",
3-
"version": "1.41.0",
3+
"version": "1.41.1",
44
"description": "Icon font containing social media branding icons",
55
"main": "style.css",
66
"repository": {
@@ -20,4 +20,4 @@
2020
},
2121
"homepage": "https://boylett.github.io/Social-Icons/demo.html",
2222
"type": "module"
23-
}
23+
}

0 commit comments

Comments
 (0)