From 1874665612ee2a000fdd05105a5421cf12d05f7a Mon Sep 17 00:00:00 2001 From: Taylor Seamans Date: Mon, 7 Aug 2023 10:45:17 -0700 Subject: [PATCH 1/5] Add and update social icons --- public/img/adobe-creative-cloud.svg | 3 + public/img/apple-music.svg | 14 + public/img/apple-podcasts.svg | 14 + public/img/edge.svg | 29 +- public/img/facebook.svg | 9 +- public/img/figma.svg | 12 +- public/img/google-pay.svg | 13 + public/img/google-play.svg | 9 +- public/img/kubernetes.svg | 10 + public/img/mail.svg | 2 +- public/img/medium.svg | 2 +- public/img/meta.svg | 3 + public/img/samsung-pay.svg | 10 + public/img/soundcloud.svg | 8 +- public/img/spotify.svg | 9 +- public/img/stack-overflow.svg | 5 +- public/img/threads.svg | 3 + public/img/twitch.svg | 3 + public/img/venmo.svg | 10 + public/img/wechat.svg | 3 + public/img/whatsapp.svg | 10 + public/img/x.svg | 3 + public/img/xing.svg | 11 + .../__snapshots__/Components-test.js.snap | 56 + .../__tests__/__snapshots__/Icon-test.js.snap | 2344 ++++++++++++----- src/js/icons/AdobeCreativeCloud.js | 13 + src/js/icons/AppleMusic.js | 36 + src/js/icons/ApplePodcasts.js | 41 + src/js/icons/Edge.js | 59 +- src/js/icons/Facebook.js | 12 +- src/js/icons/Figma.js | 18 +- src/js/icons/GooglePay.js | 35 + src/js/icons/GooglePlay.js | 17 +- src/js/icons/Kubernetes.js | 23 + src/js/icons/Mail.js | 7 +- src/js/icons/Medium.js | 5 +- src/js/icons/Meta.js | 16 + src/js/icons/SamsungPay.js | 25 + src/js/icons/Soundcloud.js | 18 +- src/js/icons/Spotify.js | 14 +- src/js/icons/StackOverflow.js | 17 +- src/js/icons/Threads.js | 16 + src/js/icons/Twitch.js | 18 + src/js/icons/Venmo.js | 25 + src/js/icons/WeChat.js | 18 + src/js/icons/WhatsApp.js | 23 + src/js/icons/X.js | 16 + src/js/icons/Xing.js | 27 + src/js/icons/index.d.ts | 14 + src/js/icons/index.js | 14 + 50 files changed, 2404 insertions(+), 718 deletions(-) create mode 100644 public/img/adobe-creative-cloud.svg create mode 100644 public/img/apple-music.svg create mode 100644 public/img/apple-podcasts.svg create mode 100644 public/img/google-pay.svg create mode 100644 public/img/kubernetes.svg create mode 100644 public/img/meta.svg create mode 100644 public/img/samsung-pay.svg create mode 100644 public/img/threads.svg create mode 100644 public/img/twitch.svg create mode 100644 public/img/venmo.svg create mode 100644 public/img/wechat.svg create mode 100644 public/img/whatsapp.svg create mode 100644 public/img/x.svg create mode 100644 public/img/xing.svg create mode 100644 src/js/icons/AdobeCreativeCloud.js create mode 100644 src/js/icons/AppleMusic.js create mode 100644 src/js/icons/ApplePodcasts.js create mode 100644 src/js/icons/GooglePay.js create mode 100644 src/js/icons/Kubernetes.js create mode 100644 src/js/icons/Meta.js create mode 100644 src/js/icons/SamsungPay.js create mode 100644 src/js/icons/Threads.js create mode 100644 src/js/icons/Twitch.js create mode 100644 src/js/icons/Venmo.js create mode 100644 src/js/icons/WeChat.js create mode 100644 src/js/icons/WhatsApp.js create mode 100644 src/js/icons/X.js create mode 100644 src/js/icons/Xing.js diff --git a/public/img/adobe-creative-cloud.svg b/public/img/adobe-creative-cloud.svg new file mode 100644 index 000000000..da08910df --- /dev/null +++ b/public/img/adobe-creative-cloud.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/img/apple-music.svg b/public/img/apple-music.svg new file mode 100644 index 000000000..d23a38a0a --- /dev/null +++ b/public/img/apple-music.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/img/apple-podcasts.svg b/public/img/apple-podcasts.svg new file mode 100644 index 000000000..52b7616b2 --- /dev/null +++ b/public/img/apple-podcasts.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/img/edge.svg b/public/img/edge.svg index 7d097cf86..e6cf88e76 100644 --- a/public/img/edge.svg +++ b/public/img/edge.svg @@ -1,3 +1,30 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/img/facebook.svg b/public/img/facebook.svg index 847ae0489..b598179e9 100644 --- a/public/img/facebook.svg +++ b/public/img/facebook.svg @@ -1,3 +1,10 @@ - + + + + + + + + diff --git a/public/img/figma.svg b/public/img/figma.svg index 0c4879d3b..99130c4cc 100644 --- a/public/img/figma.svg +++ b/public/img/figma.svg @@ -1,9 +1,7 @@ - - - - - - - + + + + + diff --git a/public/img/google-pay.svg b/public/img/google-pay.svg new file mode 100644 index 000000000..ce98b0495 --- /dev/null +++ b/public/img/google-pay.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/img/google-play.svg b/public/img/google-play.svg index cfbbd5b75..3c0b47add 100644 --- a/public/img/google-play.svg +++ b/public/img/google-play.svg @@ -1,7 +1,6 @@ - - - - - + + + + diff --git a/public/img/kubernetes.svg b/public/img/kubernetes.svg new file mode 100644 index 000000000..25c7962da --- /dev/null +++ b/public/img/kubernetes.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/img/mail.svg b/public/img/mail.svg index ac61eae81..171a174d6 100644 --- a/public/img/mail.svg +++ b/public/img/mail.svg @@ -1,3 +1,3 @@ - + diff --git a/public/img/medium.svg b/public/img/medium.svg index 4a13acd56..c4746641f 100644 --- a/public/img/medium.svg +++ b/public/img/medium.svg @@ -1,3 +1,3 @@ - + diff --git a/public/img/meta.svg b/public/img/meta.svg new file mode 100644 index 000000000..3bd12f82a --- /dev/null +++ b/public/img/meta.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/img/samsung-pay.svg b/public/img/samsung-pay.svg new file mode 100644 index 000000000..dd5546504 --- /dev/null +++ b/public/img/samsung-pay.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/img/soundcloud.svg b/public/img/soundcloud.svg index 91d72b412..154429ce6 100644 --- a/public/img/soundcloud.svg +++ b/public/img/soundcloud.svg @@ -1,3 +1,9 @@ - + + + + + + + diff --git a/public/img/spotify.svg b/public/img/spotify.svg index 55444095b..31f2c0c3a 100644 --- a/public/img/spotify.svg +++ b/public/img/spotify.svg @@ -1,3 +1,10 @@ - + + + + + + + + diff --git a/public/img/stack-overflow.svg b/public/img/stack-overflow.svg index d82484c5c..2ca4638f6 100644 --- a/public/img/stack-overflow.svg +++ b/public/img/stack-overflow.svg @@ -1,3 +1,4 @@ - - + + + diff --git a/public/img/threads.svg b/public/img/threads.svg new file mode 100644 index 000000000..f3e10389b --- /dev/null +++ b/public/img/threads.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/img/twitch.svg b/public/img/twitch.svg new file mode 100644 index 000000000..5839e204c --- /dev/null +++ b/public/img/twitch.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/img/venmo.svg b/public/img/venmo.svg new file mode 100644 index 000000000..d1dcfddac --- /dev/null +++ b/public/img/venmo.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/img/wechat.svg b/public/img/wechat.svg new file mode 100644 index 000000000..a493d37ea --- /dev/null +++ b/public/img/wechat.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/img/whatsapp.svg b/public/img/whatsapp.svg new file mode 100644 index 000000000..020a4870e --- /dev/null +++ b/public/img/whatsapp.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/img/x.svg b/public/img/x.svg new file mode 100644 index 000000000..b2521ac41 --- /dev/null +++ b/public/img/x.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/img/xing.svg b/public/img/xing.svg new file mode 100644 index 000000000..2f84efce9 --- /dev/null +++ b/public/img/xing.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/js/__tests__/__snapshots__/Components-test.js.snap b/src/js/__tests__/__snapshots__/Components-test.js.snap index 147ea23d8..5b7073457 100644 --- a/src/js/__tests__/__snapshots__/Components-test.js.snap +++ b/src/js/__tests__/__snapshots__/Components-test.js.snap @@ -30,6 +30,10 @@ exports[`Components loads 1`] = ` "$$typeof": Symbol(react.forward_ref), "render": [Function], }, + "AdobeCreativeCloud": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, "Aed": { "$$typeof": Symbol(react.forward_ref), "render": [Function], @@ -86,6 +90,14 @@ exports[`Components loads 1`] = ` "$$typeof": Symbol(react.forward_ref), "render": [Function], }, + "AppleMusic": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, + "ApplePodcasts": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, "Apps": { "$$typeof": Symbol(react.forward_ref), "render": [Function], @@ -1059,6 +1071,10 @@ exports[`Components loads 1`] = ` "$$typeof": Symbol(react.forward_ref), "render": [Function], }, + "GooglePay": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, "GooglePlay": { "$$typeof": Symbol(react.forward_ref), "render": [Function], @@ -1255,6 +1271,10 @@ exports[`Components loads 1`] = ` "$$typeof": Symbol(react.forward_ref), "render": [Function], }, + "Kubernetes": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, "Language": { "$$typeof": Symbol(react.forward_ref), "render": [Function], @@ -1399,6 +1419,10 @@ exports[`Components loads 1`] = ` "$$typeof": Symbol(react.forward_ref), "render": [Function], }, + "Meta": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, "Microfocus": { "$$typeof": Symbol(react.forward_ref), "render": [Function], @@ -1763,6 +1787,10 @@ exports[`Components loads 1`] = ` "$$typeof": Symbol(react.forward_ref), "render": [Function], }, + "SamsungPay": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, "Sans": { "$$typeof": Symbol(react.forward_ref), "render": [Function], @@ -2175,6 +2203,10 @@ exports[`Components loads 1`] = ` "$$typeof": Symbol(react.forward_ref), "render": [Function], }, + "Threads": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, "Threats": { "$$typeof": Symbol(react.forward_ref), "render": [Function], @@ -2267,6 +2299,10 @@ exports[`Components loads 1`] = ` "$$typeof": Symbol(react.forward_ref), "render": [Function], }, + "Twitch": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, "Twitter": { "$$typeof": Symbol(react.forward_ref), "render": [Function], @@ -2371,6 +2407,10 @@ exports[`Components loads 1`] = ` "$$typeof": Symbol(react.forward_ref), "render": [Function], }, + "Venmo": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, "Video": { "$$typeof": Symbol(react.forward_ref), "render": [Function], @@ -2427,10 +2467,18 @@ exports[`Components loads 1`] = ` "$$typeof": Symbol(react.forward_ref), "render": [Function], }, + "WeChat": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, "Webcam": { "$$typeof": Symbol(react.forward_ref), "render": [Function], }, + "WhatsApp": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, "Wheelchair": { "$$typeof": Symbol(react.forward_ref), "render": [Function], @@ -2471,6 +2519,14 @@ exports[`Components loads 1`] = ` "$$typeof": Symbol(react.forward_ref), "render": [Function], }, + "X": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, + "Xing": { + "$$typeof": Symbol(react.forward_ref), + "render": [Function], + }, "Yoga": { "$$typeof": Symbol(react.forward_ref), "render": [Function], diff --git a/src/js/__tests__/__snapshots__/Icon-test.js.snap b/src/js/__tests__/__snapshots__/Icon-test.js.snap index 826de0b3b..df76ddb68 100644 --- a/src/js/__tests__/__snapshots__/Icon-test.js.snap +++ b/src/js/__tests__/__snapshots__/Icon-test.js.snap @@ -544,6 +544,53 @@ exports[`Icon all icons 9`] = ` stroke: none; } + + + +`; + +exports[`Icon all icons 10`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + `; -exports[`Icon all icons 10`] = ` +exports[`Icon all icons 11`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -607,7 +654,7 @@ exports[`Icon all icons 10`] = ` `; -exports[`Icon all icons 11`] = ` +exports[`Icon all icons 12`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -656,7 +703,7 @@ exports[`Icon all icons 11`] = ` `; -exports[`Icon all icons 12`] = ` +exports[`Icon all icons 13`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -705,7 +752,7 @@ exports[`Icon all icons 12`] = ` `; -exports[`Icon all icons 13`] = ` +exports[`Icon all icons 14`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -754,7 +801,7 @@ exports[`Icon all icons 13`] = ` `; -exports[`Icon all icons 14`] = ` +exports[`Icon all icons 15`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -803,7 +850,7 @@ exports[`Icon all icons 14`] = ` `; -exports[`Icon all icons 15`] = ` +exports[`Icon all icons 16`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -851,7 +898,7 @@ exports[`Icon all icons 15`] = ` `; -exports[`Icon all icons 16`] = ` +exports[`Icon all icons 17`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -899,7 +946,7 @@ exports[`Icon all icons 16`] = ` `; -exports[`Icon all icons 17`] = ` +exports[`Icon all icons 18`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -948,7 +995,7 @@ exports[`Icon all icons 17`] = ` `; -exports[`Icon all icons 18`] = ` +exports[`Icon all icons 19`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -997,7 +1044,7 @@ exports[`Icon all icons 18`] = ` `; -exports[`Icon all icons 19`] = ` +exports[`Icon all icons 20`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1045,7 +1092,7 @@ exports[`Icon all icons 19`] = ` `; -exports[`Icon all icons 20`] = ` +exports[`Icon all icons 21`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1094,7 +1141,7 @@ exports[`Icon all icons 20`] = ` `; -exports[`Icon all icons 21`] = ` +exports[`Icon all icons 22`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1141,7 +1188,165 @@ exports[`Icon all icons 21`] = ` `; -exports[`Icon all icons 22`] = ` +exports[`Icon all icons 23`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + + + + + + + + + + + + + + + +`; + +exports[`Icon all icons 24`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + + + + + + + + + + + + + + + +`; + +exports[`Icon all icons 25`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1189,7 +1394,7 @@ exports[`Icon all icons 22`] = ` `; -exports[`Icon all icons 23`] = ` +exports[`Icon all icons 26`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1239,7 +1444,7 @@ exports[`Icon all icons 23`] = ` `; -exports[`Icon all icons 24`] = ` +exports[`Icon all icons 27`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1288,7 +1493,7 @@ exports[`Icon all icons 24`] = ` `; -exports[`Icon all icons 25`] = ` +exports[`Icon all icons 28`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1337,7 +1542,7 @@ exports[`Icon all icons 25`] = ` `; -exports[`Icon all icons 26`] = ` +exports[`Icon all icons 29`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1385,7 +1590,7 @@ exports[`Icon all icons 26`] = ` `; -exports[`Icon all icons 27`] = ` +exports[`Icon all icons 30`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1434,7 +1639,7 @@ exports[`Icon all icons 27`] = ` `; -exports[`Icon all icons 28`] = ` +exports[`Icon all icons 31`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1482,7 +1687,7 @@ exports[`Icon all icons 28`] = ` `; -exports[`Icon all icons 29`] = ` +exports[`Icon all icons 32`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1531,7 +1736,7 @@ exports[`Icon all icons 29`] = ` `; -exports[`Icon all icons 30`] = ` +exports[`Icon all icons 33`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1580,7 +1785,7 @@ exports[`Icon all icons 30`] = ` `; -exports[`Icon all icons 31`] = ` +exports[`Icon all icons 34`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1631,7 +1836,7 @@ exports[`Icon all icons 31`] = ` `; -exports[`Icon all icons 32`] = ` +exports[`Icon all icons 35`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1680,7 +1885,7 @@ exports[`Icon all icons 32`] = ` `; -exports[`Icon all icons 33`] = ` +exports[`Icon all icons 36`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1729,7 +1934,7 @@ exports[`Icon all icons 33`] = ` `; -exports[`Icon all icons 34`] = ` +exports[`Icon all icons 37`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1778,7 +1983,7 @@ exports[`Icon all icons 34`] = ` `; -exports[`Icon all icons 35`] = ` +exports[`Icon all icons 38`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1829,7 +2034,7 @@ exports[`Icon all icons 35`] = ` `; -exports[`Icon all icons 36`] = ` +exports[`Icon all icons 39`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1878,7 +2083,7 @@ exports[`Icon all icons 36`] = ` `; -exports[`Icon all icons 37`] = ` +exports[`Icon all icons 40`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1927,7 +2132,7 @@ exports[`Icon all icons 37`] = ` `; -exports[`Icon all icons 38`] = ` +exports[`Icon all icons 41`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -1976,7 +2181,7 @@ exports[`Icon all icons 38`] = ` `; -exports[`Icon all icons 39`] = ` +exports[`Icon all icons 42`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2025,7 +2230,7 @@ exports[`Icon all icons 39`] = ` `; -exports[`Icon all icons 40`] = ` +exports[`Icon all icons 43`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2074,7 +2279,7 @@ exports[`Icon all icons 40`] = ` `; -exports[`Icon all icons 41`] = ` +exports[`Icon all icons 44`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2123,7 +2328,7 @@ exports[`Icon all icons 41`] = ` `; -exports[`Icon all icons 42`] = ` +exports[`Icon all icons 45`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2171,7 +2376,7 @@ exports[`Icon all icons 42`] = ` `; -exports[`Icon all icons 43`] = ` +exports[`Icon all icons 46`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2220,7 +2425,7 @@ exports[`Icon all icons 43`] = ` `; -exports[`Icon all icons 44`] = ` +exports[`Icon all icons 47`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2269,7 +2474,7 @@ exports[`Icon all icons 44`] = ` `; -exports[`Icon all icons 45`] = ` +exports[`Icon all icons 48`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2315,7 +2520,7 @@ exports[`Icon all icons 45`] = ` `; -exports[`Icon all icons 46`] = ` +exports[`Icon all icons 49`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2364,7 +2569,7 @@ exports[`Icon all icons 46`] = ` `; -exports[`Icon all icons 47`] = ` +exports[`Icon all icons 50`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2413,7 +2618,7 @@ exports[`Icon all icons 47`] = ` `; -exports[`Icon all icons 48`] = ` +exports[`Icon all icons 51`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2459,7 +2664,7 @@ exports[`Icon all icons 48`] = ` `; -exports[`Icon all icons 49`] = ` +exports[`Icon all icons 52`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2508,7 +2713,7 @@ exports[`Icon all icons 49`] = ` `; -exports[`Icon all icons 50`] = ` +exports[`Icon all icons 53`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2557,7 +2762,7 @@ exports[`Icon all icons 50`] = ` `; -exports[`Icon all icons 51`] = ` +exports[`Icon all icons 54`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2606,7 +2811,7 @@ exports[`Icon all icons 51`] = ` `; -exports[`Icon all icons 52`] = ` +exports[`Icon all icons 55`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2655,7 +2860,7 @@ exports[`Icon all icons 52`] = ` `; -exports[`Icon all icons 53`] = ` +exports[`Icon all icons 56`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2704,7 +2909,7 @@ exports[`Icon all icons 53`] = ` `; -exports[`Icon all icons 54`] = ` +exports[`Icon all icons 57`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2753,7 +2958,7 @@ exports[`Icon all icons 54`] = ` `; -exports[`Icon all icons 55`] = ` +exports[`Icon all icons 58`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2802,7 +3007,7 @@ exports[`Icon all icons 55`] = ` `; -exports[`Icon all icons 56`] = ` +exports[`Icon all icons 59`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2851,7 +3056,7 @@ exports[`Icon all icons 56`] = ` `; -exports[`Icon all icons 57`] = ` +exports[`Icon all icons 60`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2900,7 +3105,7 @@ exports[`Icon all icons 57`] = ` `; -exports[`Icon all icons 58`] = ` +exports[`Icon all icons 61`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2949,7 +3154,7 @@ exports[`Icon all icons 58`] = ` `; -exports[`Icon all icons 59`] = ` +exports[`Icon all icons 62`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -2998,7 +3203,7 @@ exports[`Icon all icons 59`] = ` `; -exports[`Icon all icons 60`] = ` +exports[`Icon all icons 63`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3047,7 +3252,7 @@ exports[`Icon all icons 60`] = ` `; -exports[`Icon all icons 61`] = ` +exports[`Icon all icons 64`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3096,7 +3301,7 @@ exports[`Icon all icons 61`] = ` `; -exports[`Icon all icons 62`] = ` +exports[`Icon all icons 65`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3145,7 +3350,7 @@ exports[`Icon all icons 62`] = ` `; -exports[`Icon all icons 63`] = ` +exports[`Icon all icons 66`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3194,7 +3399,7 @@ exports[`Icon all icons 63`] = ` `; -exports[`Icon all icons 64`] = ` +exports[`Icon all icons 67`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3244,7 +3449,7 @@ exports[`Icon all icons 64`] = ` `; -exports[`Icon all icons 65`] = ` +exports[`Icon all icons 68`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3293,7 +3498,7 @@ exports[`Icon all icons 65`] = ` `; -exports[`Icon all icons 66`] = ` +exports[`Icon all icons 69`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3340,7 +3545,7 @@ exports[`Icon all icons 66`] = ` `; -exports[`Icon all icons 67`] = ` +exports[`Icon all icons 70`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3389,7 +3594,7 @@ exports[`Icon all icons 67`] = ` `; -exports[`Icon all icons 68`] = ` +exports[`Icon all icons 71`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3436,7 +3641,7 @@ exports[`Icon all icons 68`] = ` `; -exports[`Icon all icons 69`] = ` +exports[`Icon all icons 72`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3485,7 +3690,7 @@ exports[`Icon all icons 69`] = ` `; -exports[`Icon all icons 70`] = ` +exports[`Icon all icons 73`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3534,7 +3739,7 @@ exports[`Icon all icons 70`] = ` `; -exports[`Icon all icons 71`] = ` +exports[`Icon all icons 74`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3581,7 +3786,7 @@ exports[`Icon all icons 71`] = ` `; -exports[`Icon all icons 72`] = ` +exports[`Icon all icons 75`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3628,7 +3833,7 @@ exports[`Icon all icons 72`] = ` `; -exports[`Icon all icons 73`] = ` +exports[`Icon all icons 76`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3677,7 +3882,7 @@ exports[`Icon all icons 73`] = ` `; -exports[`Icon all icons 74`] = ` +exports[`Icon all icons 77`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3726,7 +3931,7 @@ exports[`Icon all icons 74`] = ` `; -exports[`Icon all icons 75`] = ` +exports[`Icon all icons 78`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3775,7 +3980,7 @@ exports[`Icon all icons 75`] = ` `; -exports[`Icon all icons 76`] = ` +exports[`Icon all icons 79`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3824,7 +4029,7 @@ exports[`Icon all icons 76`] = ` `; -exports[`Icon all icons 77`] = ` +exports[`Icon all icons 80`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3872,7 +4077,7 @@ exports[`Icon all icons 77`] = ` `; -exports[`Icon all icons 78`] = ` +exports[`Icon all icons 81`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3921,7 +4126,7 @@ exports[`Icon all icons 78`] = ` `; -exports[`Icon all icons 79`] = ` +exports[`Icon all icons 82`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -3970,7 +4175,7 @@ exports[`Icon all icons 79`] = ` `; -exports[`Icon all icons 80`] = ` +exports[`Icon all icons 83`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4019,7 +4224,7 @@ exports[`Icon all icons 80`] = ` `; -exports[`Icon all icons 81`] = ` +exports[`Icon all icons 84`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4068,7 +4273,7 @@ exports[`Icon all icons 81`] = ` `; -exports[`Icon all icons 82`] = ` +exports[`Icon all icons 85`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4117,7 +4322,7 @@ exports[`Icon all icons 82`] = ` `; -exports[`Icon all icons 83`] = ` +exports[`Icon all icons 86`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4166,7 +4371,7 @@ exports[`Icon all icons 83`] = ` `; -exports[`Icon all icons 84`] = ` +exports[`Icon all icons 87`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4215,7 +4420,7 @@ exports[`Icon all icons 84`] = ` `; -exports[`Icon all icons 85`] = ` +exports[`Icon all icons 88`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4264,7 +4469,7 @@ exports[`Icon all icons 85`] = ` `; -exports[`Icon all icons 86`] = ` +exports[`Icon all icons 89`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4313,7 +4518,7 @@ exports[`Icon all icons 86`] = ` `; -exports[`Icon all icons 87`] = ` +exports[`Icon all icons 90`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4362,7 +4567,7 @@ exports[`Icon all icons 87`] = ` `; -exports[`Icon all icons 88`] = ` +exports[`Icon all icons 91`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4426,7 +4631,7 @@ exports[`Icon all icons 88`] = ` `; -exports[`Icon all icons 89`] = ` +exports[`Icon all icons 92`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4475,7 +4680,7 @@ exports[`Icon all icons 89`] = ` `; -exports[`Icon all icons 90`] = ` +exports[`Icon all icons 93`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4524,7 +4729,7 @@ exports[`Icon all icons 90`] = ` `; -exports[`Icon all icons 91`] = ` +exports[`Icon all icons 94`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4573,7 +4778,7 @@ exports[`Icon all icons 91`] = ` `; -exports[`Icon all icons 92`] = ` +exports[`Icon all icons 95`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4622,7 +4827,7 @@ exports[`Icon all icons 92`] = ` `; -exports[`Icon all icons 93`] = ` +exports[`Icon all icons 96`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4671,7 +4876,7 @@ exports[`Icon all icons 93`] = ` `; -exports[`Icon all icons 94`] = ` +exports[`Icon all icons 97`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4720,7 +4925,7 @@ exports[`Icon all icons 94`] = ` `; -exports[`Icon all icons 95`] = ` +exports[`Icon all icons 98`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4769,7 +4974,7 @@ exports[`Icon all icons 95`] = ` `; -exports[`Icon all icons 96`] = ` +exports[`Icon all icons 99`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4818,7 +5023,7 @@ exports[`Icon all icons 96`] = ` `; -exports[`Icon all icons 97`] = ` +exports[`Icon all icons 100`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4871,7 +5076,7 @@ exports[`Icon all icons 97`] = ` `; -exports[`Icon all icons 98`] = ` +exports[`Icon all icons 101`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4920,7 +5125,7 @@ exports[`Icon all icons 98`] = ` `; -exports[`Icon all icons 99`] = ` +exports[`Icon all icons 102`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -4969,7 +5174,7 @@ exports[`Icon all icons 99`] = ` `; -exports[`Icon all icons 100`] = ` +exports[`Icon all icons 103`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5018,7 +5223,7 @@ exports[`Icon all icons 100`] = ` `; -exports[`Icon all icons 101`] = ` +exports[`Icon all icons 104`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5067,7 +5272,7 @@ exports[`Icon all icons 101`] = ` `; -exports[`Icon all icons 102`] = ` +exports[`Icon all icons 105`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5116,7 +5321,7 @@ exports[`Icon all icons 102`] = ` `; -exports[`Icon all icons 103`] = ` +exports[`Icon all icons 106`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5165,7 +5370,7 @@ exports[`Icon all icons 103`] = ` `; -exports[`Icon all icons 104`] = ` +exports[`Icon all icons 107`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5214,7 +5419,7 @@ exports[`Icon all icons 104`] = ` `; -exports[`Icon all icons 105`] = ` +exports[`Icon all icons 108`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5263,7 +5468,7 @@ exports[`Icon all icons 105`] = ` `; -exports[`Icon all icons 106`] = ` +exports[`Icon all icons 109`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5311,7 +5516,7 @@ exports[`Icon all icons 106`] = ` `; -exports[`Icon all icons 107`] = ` +exports[`Icon all icons 110`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5360,7 +5565,7 @@ exports[`Icon all icons 107`] = ` `; -exports[`Icon all icons 108`] = ` +exports[`Icon all icons 111`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5411,7 +5616,7 @@ exports[`Icon all icons 108`] = ` `; -exports[`Icon all icons 109`] = ` +exports[`Icon all icons 112`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5460,7 +5665,7 @@ exports[`Icon all icons 109`] = ` `; -exports[`Icon all icons 110`] = ` +exports[`Icon all icons 113`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5509,7 +5714,7 @@ exports[`Icon all icons 110`] = ` `; -exports[`Icon all icons 111`] = ` +exports[`Icon all icons 114`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5557,7 +5762,7 @@ exports[`Icon all icons 111`] = ` `; -exports[`Icon all icons 112`] = ` +exports[`Icon all icons 115`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5613,7 +5818,7 @@ exports[`Icon all icons 112`] = ` `; -exports[`Icon all icons 113`] = ` +exports[`Icon all icons 116`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5662,7 +5867,7 @@ exports[`Icon all icons 113`] = ` `; -exports[`Icon all icons 114`] = ` +exports[`Icon all icons 117`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5711,7 +5916,7 @@ exports[`Icon all icons 114`] = ` `; -exports[`Icon all icons 115`] = ` +exports[`Icon all icons 118`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5760,7 +5965,7 @@ exports[`Icon all icons 115`] = ` `; -exports[`Icon all icons 116`] = ` +exports[`Icon all icons 119`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5809,7 +6014,7 @@ exports[`Icon all icons 116`] = ` `; -exports[`Icon all icons 117`] = ` +exports[`Icon all icons 120`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5858,7 +6063,7 @@ exports[`Icon all icons 117`] = ` `; -exports[`Icon all icons 118`] = ` +exports[`Icon all icons 121`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5907,7 +6112,7 @@ exports[`Icon all icons 118`] = ` `; -exports[`Icon all icons 119`] = ` +exports[`Icon all icons 122`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -5956,7 +6161,7 @@ exports[`Icon all icons 119`] = ` `; -exports[`Icon all icons 120`] = ` +exports[`Icon all icons 123`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6007,7 +6212,7 @@ exports[`Icon all icons 120`] = ` `; -exports[`Icon all icons 121`] = ` +exports[`Icon all icons 124`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6054,7 +6259,7 @@ exports[`Icon all icons 121`] = ` `; -exports[`Icon all icons 122`] = ` +exports[`Icon all icons 125`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6103,7 +6308,7 @@ exports[`Icon all icons 122`] = ` `; -exports[`Icon all icons 123`] = ` +exports[`Icon all icons 126`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6152,7 +6357,7 @@ exports[`Icon all icons 123`] = ` `; -exports[`Icon all icons 124`] = ` +exports[`Icon all icons 127`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6201,7 +6406,7 @@ exports[`Icon all icons 124`] = ` `; -exports[`Icon all icons 125`] = ` +exports[`Icon all icons 128`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6250,7 +6455,7 @@ exports[`Icon all icons 125`] = ` `; -exports[`Icon all icons 126`] = ` +exports[`Icon all icons 129`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6299,7 +6504,7 @@ exports[`Icon all icons 126`] = ` `; -exports[`Icon all icons 127`] = ` +exports[`Icon all icons 130`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6347,7 +6552,7 @@ exports[`Icon all icons 127`] = ` `; -exports[`Icon all icons 128`] = ` +exports[`Icon all icons 131`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6396,7 +6601,7 @@ exports[`Icon all icons 128`] = ` `; -exports[`Icon all icons 129`] = ` +exports[`Icon all icons 132`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6447,7 +6652,7 @@ exports[`Icon all icons 129`] = ` `; -exports[`Icon all icons 130`] = ` +exports[`Icon all icons 133`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6496,7 +6701,7 @@ exports[`Icon all icons 130`] = ` `; -exports[`Icon all icons 131`] = ` +exports[`Icon all icons 134`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6545,7 +6750,7 @@ exports[`Icon all icons 131`] = ` `; -exports[`Icon all icons 132`] = ` +exports[`Icon all icons 135`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6594,7 +6799,7 @@ exports[`Icon all icons 132`] = ` `; -exports[`Icon all icons 133`] = ` +exports[`Icon all icons 136`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6643,7 +6848,7 @@ exports[`Icon all icons 133`] = ` `; -exports[`Icon all icons 134`] = ` +exports[`Icon all icons 137`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6692,7 +6897,7 @@ exports[`Icon all icons 134`] = ` `; -exports[`Icon all icons 135`] = ` +exports[`Icon all icons 138`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6741,7 +6946,7 @@ exports[`Icon all icons 135`] = ` `; -exports[`Icon all icons 136`] = ` +exports[`Icon all icons 139`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6790,7 +6995,7 @@ exports[`Icon all icons 136`] = ` `; -exports[`Icon all icons 137`] = ` +exports[`Icon all icons 140`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6839,7 +7044,7 @@ exports[`Icon all icons 137`] = ` `; -exports[`Icon all icons 138`] = ` +exports[`Icon all icons 141`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6887,7 +7092,7 @@ exports[`Icon all icons 138`] = ` `; -exports[`Icon all icons 139`] = ` +exports[`Icon all icons 142`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6936,7 +7141,7 @@ exports[`Icon all icons 139`] = ` `; -exports[`Icon all icons 140`] = ` +exports[`Icon all icons 143`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -6985,7 +7190,7 @@ exports[`Icon all icons 140`] = ` `; -exports[`Icon all icons 141`] = ` +exports[`Icon all icons 144`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7034,7 +7239,7 @@ exports[`Icon all icons 141`] = ` `; -exports[`Icon all icons 142`] = ` +exports[`Icon all icons 145`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7083,7 +7288,7 @@ exports[`Icon all icons 142`] = ` `; -exports[`Icon all icons 143`] = ` +exports[`Icon all icons 146`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7132,7 +7337,7 @@ exports[`Icon all icons 143`] = ` `; -exports[`Icon all icons 144`] = ` +exports[`Icon all icons 147`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7181,7 +7386,7 @@ exports[`Icon all icons 144`] = ` `; -exports[`Icon all icons 145`] = ` +exports[`Icon all icons 148`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7232,7 +7437,7 @@ exports[`Icon all icons 145`] = ` `; -exports[`Icon all icons 146`] = ` +exports[`Icon all icons 149`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7281,7 +7486,7 @@ exports[`Icon all icons 146`] = ` `; -exports[`Icon all icons 147`] = ` +exports[`Icon all icons 150`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7330,7 +7535,7 @@ exports[`Icon all icons 147`] = ` `; -exports[`Icon all icons 148`] = ` +exports[`Icon all icons 151`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7379,7 +7584,7 @@ exports[`Icon all icons 148`] = ` `; -exports[`Icon all icons 149`] = ` +exports[`Icon all icons 152`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7428,7 +7633,7 @@ exports[`Icon all icons 149`] = ` `; -exports[`Icon all icons 150`] = ` +exports[`Icon all icons 153`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7477,7 +7682,7 @@ exports[`Icon all icons 150`] = ` `; -exports[`Icon all icons 151`] = ` +exports[`Icon all icons 154`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7526,7 +7731,7 @@ exports[`Icon all icons 151`] = ` `; -exports[`Icon all icons 152`] = ` +exports[`Icon all icons 155`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7574,7 +7779,7 @@ exports[`Icon all icons 152`] = ` `; -exports[`Icon all icons 153`] = ` +exports[`Icon all icons 156`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7623,7 +7828,7 @@ exports[`Icon all icons 153`] = ` `; -exports[`Icon all icons 154`] = ` +exports[`Icon all icons 157`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7672,7 +7877,7 @@ exports[`Icon all icons 154`] = ` `; -exports[`Icon all icons 155`] = ` +exports[`Icon all icons 158`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7721,7 +7926,7 @@ exports[`Icon all icons 155`] = ` `; -exports[`Icon all icons 156`] = ` +exports[`Icon all icons 159`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7770,7 +7975,7 @@ exports[`Icon all icons 156`] = ` `; -exports[`Icon all icons 157`] = ` +exports[`Icon all icons 160`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7819,7 +8024,7 @@ exports[`Icon all icons 157`] = ` `; -exports[`Icon all icons 158`] = ` +exports[`Icon all icons 161`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7868,7 +8073,7 @@ exports[`Icon all icons 158`] = ` `; -exports[`Icon all icons 159`] = ` +exports[`Icon all icons 162`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7917,7 +8122,7 @@ exports[`Icon all icons 159`] = ` `; -exports[`Icon all icons 160`] = ` +exports[`Icon all icons 163`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -7966,7 +8171,7 @@ exports[`Icon all icons 160`] = ` `; -exports[`Icon all icons 161`] = ` +exports[`Icon all icons 164`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8015,7 +8220,7 @@ exports[`Icon all icons 161`] = ` `; -exports[`Icon all icons 162`] = ` +exports[`Icon all icons 165`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8064,7 +8269,7 @@ exports[`Icon all icons 162`] = ` `; -exports[`Icon all icons 163`] = ` +exports[`Icon all icons 166`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8113,7 +8318,7 @@ exports[`Icon all icons 163`] = ` `; -exports[`Icon all icons 164`] = ` +exports[`Icon all icons 167`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8162,7 +8367,7 @@ exports[`Icon all icons 164`] = ` `; -exports[`Icon all icons 165`] = ` +exports[`Icon all icons 168`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8211,7 +8416,7 @@ exports[`Icon all icons 165`] = ` `; -exports[`Icon all icons 166`] = ` +exports[`Icon all icons 169`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8260,7 +8465,7 @@ exports[`Icon all icons 166`] = ` `; -exports[`Icon all icons 167`] = ` +exports[`Icon all icons 170`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8309,7 +8514,7 @@ exports[`Icon all icons 167`] = ` `; -exports[`Icon all icons 168`] = ` +exports[`Icon all icons 171`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8358,7 +8563,7 @@ exports[`Icon all icons 168`] = ` `; -exports[`Icon all icons 169`] = ` +exports[`Icon all icons 172`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8407,7 +8612,7 @@ exports[`Icon all icons 169`] = ` `; -exports[`Icon all icons 170`] = ` +exports[`Icon all icons 173`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8456,7 +8661,7 @@ exports[`Icon all icons 170`] = ` `; -exports[`Icon all icons 171`] = ` +exports[`Icon all icons 174`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8505,7 +8710,7 @@ exports[`Icon all icons 171`] = ` `; -exports[`Icon all icons 172`] = ` +exports[`Icon all icons 175`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8554,7 +8759,7 @@ exports[`Icon all icons 172`] = ` `; -exports[`Icon all icons 173`] = ` +exports[`Icon all icons 176`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8603,7 +8808,7 @@ exports[`Icon all icons 173`] = ` `; -exports[`Icon all icons 174`] = ` +exports[`Icon all icons 177`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8652,7 +8857,7 @@ exports[`Icon all icons 174`] = ` `; -exports[`Icon all icons 175`] = ` +exports[`Icon all icons 178`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8701,7 +8906,7 @@ exports[`Icon all icons 175`] = ` `; -exports[`Icon all icons 176`] = ` +exports[`Icon all icons 179`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8750,7 +8955,7 @@ exports[`Icon all icons 176`] = ` `; -exports[`Icon all icons 177`] = ` +exports[`Icon all icons 180`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8799,7 +9004,7 @@ exports[`Icon all icons 177`] = ` `; -exports[`Icon all icons 178`] = ` +exports[`Icon all icons 181`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8848,7 +9053,7 @@ exports[`Icon all icons 178`] = ` `; -exports[`Icon all icons 179`] = ` +exports[`Icon all icons 182`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8897,7 +9102,7 @@ exports[`Icon all icons 179`] = ` `; -exports[`Icon all icons 180`] = ` +exports[`Icon all icons 183`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8946,7 +9151,7 @@ exports[`Icon all icons 180`] = ` `; -exports[`Icon all icons 181`] = ` +exports[`Icon all icons 184`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -8995,7 +9200,7 @@ exports[`Icon all icons 181`] = ` `; -exports[`Icon all icons 182`] = ` +exports[`Icon all icons 185`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9044,7 +9249,7 @@ exports[`Icon all icons 182`] = ` `; -exports[`Icon all icons 183`] = ` +exports[`Icon all icons 186`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9093,7 +9298,7 @@ exports[`Icon all icons 183`] = ` `; -exports[`Icon all icons 184`] = ` +exports[`Icon all icons 187`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9142,7 +9347,7 @@ exports[`Icon all icons 184`] = ` `; -exports[`Icon all icons 185`] = ` +exports[`Icon all icons 188`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9190,7 +9395,7 @@ exports[`Icon all icons 185`] = ` `; -exports[`Icon all icons 186`] = ` +exports[`Icon all icons 189`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9239,7 +9444,7 @@ exports[`Icon all icons 186`] = ` `; -exports[`Icon all icons 187`] = ` +exports[`Icon all icons 190`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9288,7 +9493,7 @@ exports[`Icon all icons 187`] = ` `; -exports[`Icon all icons 188`] = ` +exports[`Icon all icons 191`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9337,7 +9542,7 @@ exports[`Icon all icons 188`] = ` `; -exports[`Icon all icons 189`] = ` +exports[`Icon all icons 192`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9386,7 +9591,7 @@ exports[`Icon all icons 189`] = ` `; -exports[`Icon all icons 190`] = ` +exports[`Icon all icons 193`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9435,7 +9640,7 @@ exports[`Icon all icons 190`] = ` `; -exports[`Icon all icons 191`] = ` +exports[`Icon all icons 194`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9482,7 +9687,7 @@ exports[`Icon all icons 191`] = ` `; -exports[`Icon all icons 192`] = ` +exports[`Icon all icons 195`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9531,7 +9736,7 @@ exports[`Icon all icons 192`] = ` `; -exports[`Icon all icons 193`] = ` +exports[`Icon all icons 196`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9579,7 +9784,7 @@ exports[`Icon all icons 193`] = ` `; -exports[`Icon all icons 194`] = ` +exports[`Icon all icons 197`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9628,7 +9833,7 @@ exports[`Icon all icons 194`] = ` `; -exports[`Icon all icons 195`] = ` +exports[`Icon all icons 198`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9675,7 +9880,7 @@ exports[`Icon all icons 195`] = ` `; -exports[`Icon all icons 196`] = ` +exports[`Icon all icons 199`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9738,7 +9943,7 @@ exports[`Icon all icons 196`] = ` `; -exports[`Icon all icons 197`] = ` +exports[`Icon all icons 200`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9778,15 +9983,108 @@ exports[`Icon all icons 197`] = ` class="c0" viewBox="0 0 24 24" > - + + + + + + + + + + + + + + + + + + + + + + + + + + + + `; -exports[`Icon all icons 198`] = ` +exports[`Icon all icons 201`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9835,7 +10133,7 @@ exports[`Icon all icons 198`] = ` `; -exports[`Icon all icons 199`] = ` +exports[`Icon all icons 202`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9884,7 +10182,7 @@ exports[`Icon all icons 199`] = ` `; -exports[`Icon all icons 200`] = ` +exports[`Icon all icons 203`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9934,7 +10232,7 @@ exports[`Icon all icons 200`] = ` `; -exports[`Icon all icons 201`] = ` +exports[`Icon all icons 204`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -9981,7 +10279,7 @@ exports[`Icon all icons 201`] = ` `; -exports[`Icon all icons 202`] = ` +exports[`Icon all icons 205`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10030,7 +10328,7 @@ exports[`Icon all icons 202`] = ` `; -exports[`Icon all icons 203`] = ` +exports[`Icon all icons 206`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10079,7 +10377,7 @@ exports[`Icon all icons 203`] = ` `; -exports[`Icon all icons 204`] = ` +exports[`Icon all icons 207`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10128,7 +10426,7 @@ exports[`Icon all icons 204`] = ` `; -exports[`Icon all icons 205`] = ` +exports[`Icon all icons 208`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10178,7 +10476,7 @@ exports[`Icon all icons 205`] = ` `; -exports[`Icon all icons 206`] = ` +exports[`Icon all icons 209`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10227,7 +10525,7 @@ exports[`Icon all icons 206`] = ` `; -exports[`Icon all icons 207`] = ` +exports[`Icon all icons 210`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10286,7 +10584,7 @@ exports[`Icon all icons 207`] = ` `; -exports[`Icon all icons 208`] = ` +exports[`Icon all icons 211`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10334,7 +10632,7 @@ exports[`Icon all icons 208`] = ` `; -exports[`Icon all icons 209`] = ` +exports[`Icon all icons 212`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10374,15 +10672,28 @@ exports[`Icon all icons 209`] = ` class="c0" viewBox="0 0 24 24" > - + + + + + + + + `; -exports[`Icon all icons 210`] = ` +exports[`Icon all icons 213`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10458,7 +10769,7 @@ exports[`Icon all icons 210`] = ` `; -exports[`Icon all icons 211`] = ` +exports[`Icon all icons 214`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10507,7 +10818,7 @@ exports[`Icon all icons 211`] = ` `; -exports[`Icon all icons 212`] = ` +exports[`Icon all icons 215`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10556,7 +10867,7 @@ exports[`Icon all icons 212`] = ` `; -exports[`Icon all icons 213`] = ` +exports[`Icon all icons 216`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10605,7 +10916,7 @@ exports[`Icon all icons 213`] = ` `; -exports[`Icon all icons 214`] = ` +exports[`Icon all icons 217`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10653,7 +10964,7 @@ exports[`Icon all icons 214`] = ` `; -exports[`Icon all icons 215`] = ` +exports[`Icon all icons 218`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10693,38 +11004,30 @@ exports[`Icon all icons 215`] = ` class="c0" viewBox="0 0 24 24" > - - - - - - - + + + + + `; -exports[`Icon all icons 216`] = ` +exports[`Icon all icons 219`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10773,7 +11076,7 @@ exports[`Icon all icons 216`] = ` `; -exports[`Icon all icons 217`] = ` +exports[`Icon all icons 220`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10823,7 +11126,7 @@ exports[`Icon all icons 217`] = ` `; -exports[`Icon all icons 218`] = ` +exports[`Icon all icons 221`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10872,7 +11175,7 @@ exports[`Icon all icons 218`] = ` `; -exports[`Icon all icons 219`] = ` +exports[`Icon all icons 222`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10920,7 +11223,7 @@ exports[`Icon all icons 219`] = ` `; -exports[`Icon all icons 220`] = ` +exports[`Icon all icons 223`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -10969,7 +11272,7 @@ exports[`Icon all icons 220`] = ` `; -exports[`Icon all icons 221`] = ` +exports[`Icon all icons 224`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11018,7 +11321,7 @@ exports[`Icon all icons 221`] = ` `; -exports[`Icon all icons 222`] = ` +exports[`Icon all icons 225`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11067,7 +11370,7 @@ exports[`Icon all icons 222`] = ` `; -exports[`Icon all icons 223`] = ` +exports[`Icon all icons 226`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11116,7 +11419,7 @@ exports[`Icon all icons 223`] = ` `; -exports[`Icon all icons 224`] = ` +exports[`Icon all icons 227`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11165,7 +11468,7 @@ exports[`Icon all icons 224`] = ` `; -exports[`Icon all icons 225`] = ` +exports[`Icon all icons 228`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11214,7 +11517,7 @@ exports[`Icon all icons 225`] = ` `; -exports[`Icon all icons 226`] = ` +exports[`Icon all icons 229`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11263,7 +11566,7 @@ exports[`Icon all icons 226`] = ` `; -exports[`Icon all icons 227`] = ` +exports[`Icon all icons 230`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11312,7 +11615,7 @@ exports[`Icon all icons 227`] = ` `; -exports[`Icon all icons 228`] = ` +exports[`Icon all icons 231`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11361,7 +11664,7 @@ exports[`Icon all icons 228`] = ` `; -exports[`Icon all icons 229`] = ` +exports[`Icon all icons 232`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11410,7 +11713,7 @@ exports[`Icon all icons 229`] = ` `; -exports[`Icon all icons 230`] = ` +exports[`Icon all icons 233`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11459,7 +11762,7 @@ exports[`Icon all icons 230`] = ` `; -exports[`Icon all icons 231`] = ` +exports[`Icon all icons 234`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11508,7 +11811,7 @@ exports[`Icon all icons 231`] = ` `; -exports[`Icon all icons 232`] = ` +exports[`Icon all icons 235`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11557,7 +11860,7 @@ exports[`Icon all icons 232`] = ` `; -exports[`Icon all icons 233`] = ` +exports[`Icon all icons 236`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11606,7 +11909,7 @@ exports[`Icon all icons 233`] = ` `; -exports[`Icon all icons 234`] = ` +exports[`Icon all icons 237`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11655,7 +11958,7 @@ exports[`Icon all icons 234`] = ` `; -exports[`Icon all icons 235`] = ` +exports[`Icon all icons 238`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11704,7 +12007,7 @@ exports[`Icon all icons 235`] = ` `; -exports[`Icon all icons 236`] = ` +exports[`Icon all icons 239`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11753,7 +12056,7 @@ exports[`Icon all icons 236`] = ` `; -exports[`Icon all icons 237`] = ` +exports[`Icon all icons 240`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11802,7 +12105,7 @@ exports[`Icon all icons 237`] = ` `; -exports[`Icon all icons 238`] = ` +exports[`Icon all icons 241`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11851,7 +12154,7 @@ exports[`Icon all icons 238`] = ` `; -exports[`Icon all icons 239`] = ` +exports[`Icon all icons 242`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11900,7 +12203,7 @@ exports[`Icon all icons 239`] = ` `; -exports[`Icon all icons 240`] = ` +exports[`Icon all icons 243`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11949,7 +12252,7 @@ exports[`Icon all icons 240`] = ` `; -exports[`Icon all icons 241`] = ` +exports[`Icon all icons 244`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -11998,7 +12301,7 @@ exports[`Icon all icons 241`] = ` `; -exports[`Icon all icons 242`] = ` +exports[`Icon all icons 245`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12047,7 +12350,7 @@ exports[`Icon all icons 242`] = ` `; -exports[`Icon all icons 243`] = ` +exports[`Icon all icons 246`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12096,7 +12399,7 @@ exports[`Icon all icons 243`] = ` `; -exports[`Icon all icons 244`] = ` +exports[`Icon all icons 247`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12145,7 +12448,7 @@ exports[`Icon all icons 244`] = ` `; -exports[`Icon all icons 245`] = ` +exports[`Icon all icons 248`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12194,7 +12497,7 @@ exports[`Icon all icons 245`] = ` `; -exports[`Icon all icons 246`] = ` +exports[`Icon all icons 249`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12243,7 +12546,7 @@ exports[`Icon all icons 246`] = ` `; -exports[`Icon all icons 247`] = ` +exports[`Icon all icons 250`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12292,7 +12595,7 @@ exports[`Icon all icons 247`] = ` `; -exports[`Icon all icons 248`] = ` +exports[`Icon all icons 251`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12341,7 +12644,7 @@ exports[`Icon all icons 248`] = ` `; -exports[`Icon all icons 249`] = ` +exports[`Icon all icons 252`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12390,7 +12693,7 @@ exports[`Icon all icons 249`] = ` `; -exports[`Icon all icons 250`] = ` +exports[`Icon all icons 253`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12439,7 +12742,7 @@ exports[`Icon all icons 250`] = ` `; -exports[`Icon all icons 251`] = ` +exports[`Icon all icons 254`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12488,7 +12791,7 @@ exports[`Icon all icons 251`] = ` `; -exports[`Icon all icons 252`] = ` +exports[`Icon all icons 255`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12537,7 +12840,7 @@ exports[`Icon all icons 252`] = ` `; -exports[`Icon all icons 253`] = ` +exports[`Icon all icons 256`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12586,7 +12889,7 @@ exports[`Icon all icons 253`] = ` `; -exports[`Icon all icons 254`] = ` +exports[`Icon all icons 257`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12635,7 +12938,7 @@ exports[`Icon all icons 254`] = ` `; -exports[`Icon all icons 255`] = ` +exports[`Icon all icons 258`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12683,7 +12986,7 @@ exports[`Icon all icons 255`] = ` `; -exports[`Icon all icons 256`] = ` +exports[`Icon all icons 259`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12732,7 +13035,7 @@ exports[`Icon all icons 256`] = ` `; -exports[`Icon all icons 257`] = ` +exports[`Icon all icons 260`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12781,7 +13084,7 @@ exports[`Icon all icons 257`] = ` `; -exports[`Icon all icons 258`] = ` +exports[`Icon all icons 261`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12830,7 +13133,7 @@ exports[`Icon all icons 258`] = ` `; -exports[`Icon all icons 259`] = ` +exports[`Icon all icons 262`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12877,7 +13180,7 @@ exports[`Icon all icons 259`] = ` `; -exports[`Icon all icons 260`] = ` +exports[`Icon all icons 263`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12926,7 +13229,7 @@ exports[`Icon all icons 260`] = ` `; -exports[`Icon all icons 261`] = ` +exports[`Icon all icons 264`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -12975,7 +13278,7 @@ exports[`Icon all icons 261`] = ` `; -exports[`Icon all icons 262`] = ` +exports[`Icon all icons 265`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13023,7 +13326,7 @@ exports[`Icon all icons 262`] = ` `; -exports[`Icon all icons 263`] = ` +exports[`Icon all icons 266`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13072,7 +13375,7 @@ exports[`Icon all icons 263`] = ` `; -exports[`Icon all icons 264`] = ` +exports[`Icon all icons 267`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13131,7 +13434,7 @@ exports[`Icon all icons 264`] = ` `; -exports[`Icon all icons 265`] = ` +exports[`Icon all icons 268`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13167,27 +13470,44 @@ exports[`Icon all icons 265`] = ` } + + + + + + + `; -exports[`Icon all icons 266`] = ` +exports[`Icon all icons 269`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13223,19 +13543,30 @@ exports[`Icon all icons 266`] = ` } + + + `; -exports[`Icon all icons 267`] = ` +exports[`Icon all icons 270`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13271,19 +13602,19 @@ exports[`Icon all icons 267`] = ` } `; -exports[`Icon all icons 268`] = ` +exports[`Icon all icons 271`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13319,7 +13650,55 @@ exports[`Icon all icons 268`] = ` } + + +`; + +exports[`Icon all icons 272`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + + @@ -13342,7 +13721,7 @@ exports[`Icon all icons 268`] = ` `; -exports[`Icon all icons 269`] = ` +exports[`Icon all icons 273`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13389,7 +13768,7 @@ exports[`Icon all icons 269`] = ` `; -exports[`Icon all icons 270`] = ` +exports[`Icon all icons 274`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13438,7 +13817,7 @@ exports[`Icon all icons 270`] = ` `; -exports[`Icon all icons 271`] = ` +exports[`Icon all icons 275`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13487,7 +13866,7 @@ exports[`Icon all icons 271`] = ` `; -exports[`Icon all icons 272`] = ` +exports[`Icon all icons 276`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13536,7 +13915,7 @@ exports[`Icon all icons 272`] = ` `; -exports[`Icon all icons 273`] = ` +exports[`Icon all icons 277`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13585,7 +13964,7 @@ exports[`Icon all icons 273`] = ` `; -exports[`Icon all icons 274`] = ` +exports[`Icon all icons 278`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13634,7 +14013,7 @@ exports[`Icon all icons 274`] = ` `; -exports[`Icon all icons 275`] = ` +exports[`Icon all icons 279`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13682,7 +14061,7 @@ exports[`Icon all icons 275`] = ` `; -exports[`Icon all icons 276`] = ` +exports[`Icon all icons 280`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13731,7 +14110,7 @@ exports[`Icon all icons 276`] = ` `; -exports[`Icon all icons 277`] = ` +exports[`Icon all icons 281`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13791,7 +14170,7 @@ exports[`Icon all icons 277`] = ` `; -exports[`Icon all icons 278`] = ` +exports[`Icon all icons 282`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13840,7 +14219,7 @@ exports[`Icon all icons 278`] = ` `; -exports[`Icon all icons 279`] = ` +exports[`Icon all icons 283`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13889,7 +14268,7 @@ exports[`Icon all icons 279`] = ` `; -exports[`Icon all icons 280`] = ` +exports[`Icon all icons 284`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13937,7 +14316,7 @@ exports[`Icon all icons 280`] = ` `; -exports[`Icon all icons 281`] = ` +exports[`Icon all icons 285`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -13986,7 +14365,7 @@ exports[`Icon all icons 281`] = ` `; -exports[`Icon all icons 282`] = ` +exports[`Icon all icons 286`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14035,7 +14414,7 @@ exports[`Icon all icons 282`] = ` `; -exports[`Icon all icons 283`] = ` +exports[`Icon all icons 287`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14088,7 +14467,7 @@ exports[`Icon all icons 283`] = ` `; -exports[`Icon all icons 284`] = ` +exports[`Icon all icons 288`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14137,7 +14516,7 @@ exports[`Icon all icons 284`] = ` `; -exports[`Icon all icons 285`] = ` +exports[`Icon all icons 289`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14186,7 +14565,7 @@ exports[`Icon all icons 285`] = ` `; -exports[`Icon all icons 286`] = ` +exports[`Icon all icons 290`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14234,7 +14613,7 @@ exports[`Icon all icons 286`] = ` `; -exports[`Icon all icons 287`] = ` +exports[`Icon all icons 291`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14283,7 +14662,7 @@ exports[`Icon all icons 287`] = ` `; -exports[`Icon all icons 288`] = ` +exports[`Icon all icons 292`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14332,7 +14711,7 @@ exports[`Icon all icons 288`] = ` `; -exports[`Icon all icons 289`] = ` +exports[`Icon all icons 293`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14380,7 +14759,7 @@ exports[`Icon all icons 289`] = ` `; -exports[`Icon all icons 290`] = ` +exports[`Icon all icons 294`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14429,7 +14808,7 @@ exports[`Icon all icons 290`] = ` `; -exports[`Icon all icons 291`] = ` +exports[`Icon all icons 295`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14478,7 +14857,7 @@ exports[`Icon all icons 291`] = ` `; -exports[`Icon all icons 292`] = ` +exports[`Icon all icons 296`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14526,7 +14905,7 @@ exports[`Icon all icons 292`] = ` `; -exports[`Icon all icons 293`] = ` +exports[`Icon all icons 297`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14575,7 +14954,7 @@ exports[`Icon all icons 293`] = ` `; -exports[`Icon all icons 294`] = ` +exports[`Icon all icons 298`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14624,7 +15003,7 @@ exports[`Icon all icons 294`] = ` `; -exports[`Icon all icons 295`] = ` +exports[`Icon all icons 299`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14673,7 +15052,7 @@ exports[`Icon all icons 295`] = ` `; -exports[`Icon all icons 296`] = ` +exports[`Icon all icons 300`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14722,7 +15101,7 @@ exports[`Icon all icons 296`] = ` `; -exports[`Icon all icons 297`] = ` +exports[`Icon all icons 301`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14771,7 +15150,7 @@ exports[`Icon all icons 297`] = ` `; -exports[`Icon all icons 298`] = ` +exports[`Icon all icons 302`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14820,7 +15199,7 @@ exports[`Icon all icons 298`] = ` `; -exports[`Icon all icons 299`] = ` +exports[`Icon all icons 303`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14869,7 +15248,7 @@ exports[`Icon all icons 299`] = ` `; -exports[`Icon all icons 300`] = ` +exports[`Icon all icons 304`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14918,7 +15297,7 @@ exports[`Icon all icons 300`] = ` `; -exports[`Icon all icons 301`] = ` +exports[`Icon all icons 305`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -14967,7 +15346,7 @@ exports[`Icon all icons 301`] = ` `; -exports[`Icon all icons 302`] = ` +exports[`Icon all icons 306`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15016,7 +15395,7 @@ exports[`Icon all icons 302`] = ` `; -exports[`Icon all icons 303`] = ` +exports[`Icon all icons 307`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15065,7 +15444,7 @@ exports[`Icon all icons 303`] = ` `; -exports[`Icon all icons 304`] = ` +exports[`Icon all icons 308`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15111,7 +15490,7 @@ exports[`Icon all icons 304`] = ` `; -exports[`Icon all icons 305`] = ` +exports[`Icon all icons 309`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15160,7 +15539,7 @@ exports[`Icon all icons 305`] = ` `; -exports[`Icon all icons 306`] = ` +exports[`Icon all icons 310`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15209,7 +15588,7 @@ exports[`Icon all icons 306`] = ` `; -exports[`Icon all icons 307`] = ` +exports[`Icon all icons 311`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15258,7 +15637,7 @@ exports[`Icon all icons 307`] = ` `; -exports[`Icon all icons 308`] = ` +exports[`Icon all icons 312`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15306,7 +15685,7 @@ exports[`Icon all icons 308`] = ` `; -exports[`Icon all icons 309`] = ` +exports[`Icon all icons 313`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15352,7 +15731,7 @@ exports[`Icon all icons 309`] = ` `; -exports[`Icon all icons 310`] = ` +exports[`Icon all icons 314`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15401,7 +15780,7 @@ exports[`Icon all icons 310`] = ` `; -exports[`Icon all icons 311`] = ` +exports[`Icon all icons 315`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15450,7 +15829,7 @@ exports[`Icon all icons 311`] = ` `; -exports[`Icon all icons 312`] = ` +exports[`Icon all icons 316`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15507,7 +15886,7 @@ exports[`Icon all icons 312`] = ` `; -exports[`Icon all icons 313`] = ` +exports[`Icon all icons 317`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15556,7 +15935,7 @@ exports[`Icon all icons 313`] = ` `; -exports[`Icon all icons 314`] = ` +exports[`Icon all icons 318`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15605,7 +15984,68 @@ exports[`Icon all icons 314`] = ` `; -exports[`Icon all icons 315`] = ` +exports[`Icon all icons 319`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + + + + + + + + + + + +`; + +exports[`Icon all icons 320`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15654,7 +16094,7 @@ exports[`Icon all icons 315`] = ` `; -exports[`Icon all icons 316`] = ` +exports[`Icon all icons 321`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15701,7 +16141,7 @@ exports[`Icon all icons 316`] = ` `; -exports[`Icon all icons 317`] = ` +exports[`Icon all icons 322`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15750,7 +16190,7 @@ exports[`Icon all icons 317`] = ` `; -exports[`Icon all icons 318`] = ` +exports[`Icon all icons 323`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15799,7 +16239,7 @@ exports[`Icon all icons 318`] = ` `; -exports[`Icon all icons 319`] = ` +exports[`Icon all icons 324`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15848,7 +16288,7 @@ exports[`Icon all icons 319`] = ` `; -exports[`Icon all icons 320`] = ` +exports[`Icon all icons 325`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15897,7 +16337,7 @@ exports[`Icon all icons 320`] = ` `; -exports[`Icon all icons 321`] = ` +exports[`Icon all icons 326`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15946,7 +16386,7 @@ exports[`Icon all icons 321`] = ` `; -exports[`Icon all icons 322`] = ` +exports[`Icon all icons 327`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -15995,7 +16435,7 @@ exports[`Icon all icons 322`] = ` `; -exports[`Icon all icons 323`] = ` +exports[`Icon all icons 328`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16044,7 +16484,7 @@ exports[`Icon all icons 323`] = ` `; -exports[`Icon all icons 324`] = ` +exports[`Icon all icons 329`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16093,7 +16533,7 @@ exports[`Icon all icons 324`] = ` `; -exports[`Icon all icons 325`] = ` +exports[`Icon all icons 330`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16142,7 +16582,7 @@ exports[`Icon all icons 325`] = ` `; -exports[`Icon all icons 326`] = ` +exports[`Icon all icons 331`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16191,7 +16631,7 @@ exports[`Icon all icons 326`] = ` `; -exports[`Icon all icons 327`] = ` +exports[`Icon all icons 332`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16240,7 +16680,7 @@ exports[`Icon all icons 327`] = ` `; -exports[`Icon all icons 328`] = ` +exports[`Icon all icons 333`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16289,7 +16729,7 @@ exports[`Icon all icons 328`] = ` `; -exports[`Icon all icons 329`] = ` +exports[`Icon all icons 334`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16338,7 +16778,7 @@ exports[`Icon all icons 329`] = ` `; -exports[`Icon all icons 330`] = ` +exports[`Icon all icons 335`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16386,7 +16826,7 @@ exports[`Icon all icons 330`] = ` `; -exports[`Icon all icons 331`] = ` +exports[`Icon all icons 336`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16434,7 +16874,7 @@ exports[`Icon all icons 331`] = ` `; -exports[`Icon all icons 332`] = ` +exports[`Icon all icons 337`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16484,7 +16924,7 @@ exports[`Icon all icons 332`] = ` `; -exports[`Icon all icons 333`] = ` +exports[`Icon all icons 338`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16533,7 +16973,7 @@ exports[`Icon all icons 333`] = ` `; -exports[`Icon all icons 334`] = ` +exports[`Icon all icons 339`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16582,7 +17022,7 @@ exports[`Icon all icons 334`] = ` `; -exports[`Icon all icons 335`] = ` +exports[`Icon all icons 340`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16631,7 +17071,7 @@ exports[`Icon all icons 335`] = ` `; -exports[`Icon all icons 336`] = ` +exports[`Icon all icons 341`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16680,7 +17120,7 @@ exports[`Icon all icons 336`] = ` `; -exports[`Icon all icons 337`] = ` +exports[`Icon all icons 342`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16729,7 +17169,7 @@ exports[`Icon all icons 337`] = ` `; -exports[`Icon all icons 338`] = ` +exports[`Icon all icons 343`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16778,7 +17218,7 @@ exports[`Icon all icons 338`] = ` `; -exports[`Icon all icons 339`] = ` +exports[`Icon all icons 344`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16827,7 +17267,7 @@ exports[`Icon all icons 339`] = ` `; -exports[`Icon all icons 340`] = ` +exports[`Icon all icons 345`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16876,7 +17316,7 @@ exports[`Icon all icons 340`] = ` `; -exports[`Icon all icons 341`] = ` +exports[`Icon all icons 346`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16925,7 +17365,7 @@ exports[`Icon all icons 341`] = ` `; -exports[`Icon all icons 342`] = ` +exports[`Icon all icons 347`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -16966,14 +17406,15 @@ exports[`Icon all icons 342`] = ` viewBox="0 0 24 24" > `; -exports[`Icon all icons 343`] = ` +exports[`Icon all icons 348`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17021,7 +17462,7 @@ exports[`Icon all icons 343`] = ` `; -exports[`Icon all icons 344`] = ` +exports[`Icon all icons 349`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17070,7 +17511,7 @@ exports[`Icon all icons 344`] = ` `; -exports[`Icon all icons 345`] = ` +exports[`Icon all icons 350`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17119,7 +17560,7 @@ exports[`Icon all icons 345`] = ` `; -exports[`Icon all icons 346`] = ` +exports[`Icon all icons 351`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17168,7 +17609,7 @@ exports[`Icon all icons 346`] = ` `; -exports[`Icon all icons 347`] = ` +exports[`Icon all icons 352`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17229,7 +17670,7 @@ exports[`Icon all icons 347`] = ` `; -exports[`Icon all icons 348`] = ` +exports[`Icon all icons 353`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17270,13 +17711,13 @@ exports[`Icon all icons 348`] = ` viewBox="0 0 24 24" > `; -exports[`Icon all icons 349`] = ` +exports[`Icon all icons 354`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17325,7 +17766,7 @@ exports[`Icon all icons 349`] = ` `; -exports[`Icon all icons 350`] = ` +exports[`Icon all icons 355`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17374,7 +17815,54 @@ exports[`Icon all icons 350`] = ` `; -exports[`Icon all icons 351`] = ` +exports[`Icon all icons 356`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + + + + +`; + +exports[`Icon all icons 357`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17422,7 +17910,7 @@ exports[`Icon all icons 351`] = ` `; -exports[`Icon all icons 352`] = ` +exports[`Icon all icons 358`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17471,7 +17959,7 @@ exports[`Icon all icons 352`] = ` `; -exports[`Icon all icons 353`] = ` +exports[`Icon all icons 359`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17520,7 +18008,7 @@ exports[`Icon all icons 353`] = ` `; -exports[`Icon all icons 354`] = ` +exports[`Icon all icons 360`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17569,7 +18057,7 @@ exports[`Icon all icons 354`] = ` `; -exports[`Icon all icons 355`] = ` +exports[`Icon all icons 361`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17615,7 +18103,7 @@ exports[`Icon all icons 355`] = ` `; -exports[`Icon all icons 356`] = ` +exports[`Icon all icons 362`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17665,7 +18153,7 @@ exports[`Icon all icons 356`] = ` `; -exports[`Icon all icons 357`] = ` +exports[`Icon all icons 363`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17711,7 +18199,7 @@ exports[`Icon all icons 357`] = ` `; -exports[`Icon all icons 358`] = ` +exports[`Icon all icons 364`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17760,7 +18248,7 @@ exports[`Icon all icons 358`] = ` `; -exports[`Icon all icons 359`] = ` +exports[`Icon all icons 365`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17809,7 +18297,7 @@ exports[`Icon all icons 359`] = ` `; -exports[`Icon all icons 360`] = ` +exports[`Icon all icons 366`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17860,7 +18348,7 @@ exports[`Icon all icons 360`] = ` `; -exports[`Icon all icons 361`] = ` +exports[`Icon all icons 367`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17909,7 +18397,7 @@ exports[`Icon all icons 361`] = ` `; -exports[`Icon all icons 362`] = ` +exports[`Icon all icons 368`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -17958,7 +18446,7 @@ exports[`Icon all icons 362`] = ` `; -exports[`Icon all icons 363`] = ` +exports[`Icon all icons 369`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18006,7 +18494,7 @@ exports[`Icon all icons 363`] = ` `; -exports[`Icon all icons 364`] = ` +exports[`Icon all icons 370`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18055,7 +18543,7 @@ exports[`Icon all icons 364`] = ` `; -exports[`Icon all icons 365`] = ` +exports[`Icon all icons 371`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18104,7 +18592,7 @@ exports[`Icon all icons 365`] = ` `; -exports[`Icon all icons 366`] = ` +exports[`Icon all icons 372`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18153,7 +18641,7 @@ exports[`Icon all icons 366`] = ` `; -exports[`Icon all icons 367`] = ` +exports[`Icon all icons 373`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18202,7 +18690,7 @@ exports[`Icon all icons 367`] = ` `; -exports[`Icon all icons 368`] = ` +exports[`Icon all icons 374`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18251,7 +18739,7 @@ exports[`Icon all icons 368`] = ` `; -exports[`Icon all icons 369`] = ` +exports[`Icon all icons 375`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18300,7 +18788,7 @@ exports[`Icon all icons 369`] = ` `; -exports[`Icon all icons 370`] = ` +exports[`Icon all icons 376`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18347,7 +18835,7 @@ exports[`Icon all icons 370`] = ` `; -exports[`Icon all icons 371`] = ` +exports[`Icon all icons 377`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18396,7 +18884,7 @@ exports[`Icon all icons 371`] = ` `; -exports[`Icon all icons 372`] = ` +exports[`Icon all icons 378`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18443,7 +18931,7 @@ exports[`Icon all icons 372`] = ` `; -exports[`Icon all icons 373`] = ` +exports[`Icon all icons 379`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18492,7 +18980,7 @@ exports[`Icon all icons 373`] = ` `; -exports[`Icon all icons 374`] = ` +exports[`Icon all icons 380`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18541,7 +19029,7 @@ exports[`Icon all icons 374`] = ` `; -exports[`Icon all icons 375`] = ` +exports[`Icon all icons 381`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18590,7 +19078,7 @@ exports[`Icon all icons 375`] = ` `; -exports[`Icon all icons 376`] = ` +exports[`Icon all icons 382`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18646,7 +19134,7 @@ exports[`Icon all icons 376`] = ` `; -exports[`Icon all icons 377`] = ` +exports[`Icon all icons 383`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18695,7 +19183,7 @@ exports[`Icon all icons 377`] = ` `; -exports[`Icon all icons 378`] = ` +exports[`Icon all icons 384`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18744,7 +19232,7 @@ exports[`Icon all icons 378`] = ` `; -exports[`Icon all icons 379`] = ` +exports[`Icon all icons 385`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18793,7 +19281,7 @@ exports[`Icon all icons 379`] = ` `; -exports[`Icon all icons 380`] = ` +exports[`Icon all icons 386`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18841,7 +19329,7 @@ exports[`Icon all icons 380`] = ` `; -exports[`Icon all icons 381`] = ` +exports[`Icon all icons 387`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18889,7 +19377,7 @@ exports[`Icon all icons 381`] = ` `; -exports[`Icon all icons 382`] = ` +exports[`Icon all icons 388`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18938,7 +19426,7 @@ exports[`Icon all icons 382`] = ` `; -exports[`Icon all icons 383`] = ` +exports[`Icon all icons 389`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -18986,7 +19474,7 @@ exports[`Icon all icons 383`] = ` `; -exports[`Icon all icons 384`] = ` +exports[`Icon all icons 390`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19032,7 +19520,7 @@ exports[`Icon all icons 384`] = ` `; -exports[`Icon all icons 385`] = ` +exports[`Icon all icons 391`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19081,7 +19569,7 @@ exports[`Icon all icons 385`] = ` `; -exports[`Icon all icons 386`] = ` +exports[`Icon all icons 392`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19130,7 +19618,7 @@ exports[`Icon all icons 386`] = ` `; -exports[`Icon all icons 387`] = ` +exports[`Icon all icons 393`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19179,7 +19667,7 @@ exports[`Icon all icons 387`] = ` `; -exports[`Icon all icons 388`] = ` +exports[`Icon all icons 394`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19228,7 +19716,7 @@ exports[`Icon all icons 388`] = ` `; -exports[`Icon all icons 389`] = ` +exports[`Icon all icons 395`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19277,7 +19765,7 @@ exports[`Icon all icons 389`] = ` `; -exports[`Icon all icons 390`] = ` +exports[`Icon all icons 396`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19326,7 +19814,7 @@ exports[`Icon all icons 390`] = ` `; -exports[`Icon all icons 391`] = ` +exports[`Icon all icons 397`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19375,7 +19863,7 @@ exports[`Icon all icons 391`] = ` `; -exports[`Icon all icons 392`] = ` +exports[`Icon all icons 398`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19423,7 +19911,7 @@ exports[`Icon all icons 392`] = ` `; -exports[`Icon all icons 393`] = ` +exports[`Icon all icons 399`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19474,7 +19962,7 @@ exports[`Icon all icons 393`] = ` `; -exports[`Icon all icons 394`] = ` +exports[`Icon all icons 400`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19523,7 +20011,7 @@ exports[`Icon all icons 394`] = ` `; -exports[`Icon all icons 395`] = ` +exports[`Icon all icons 401`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19572,7 +20060,7 @@ exports[`Icon all icons 395`] = ` `; -exports[`Icon all icons 396`] = ` +exports[`Icon all icons 402`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19621,7 +20109,7 @@ exports[`Icon all icons 396`] = ` `; -exports[`Icon all icons 397`] = ` +exports[`Icon all icons 403`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19670,7 +20158,7 @@ exports[`Icon all icons 397`] = ` `; -exports[`Icon all icons 398`] = ` +exports[`Icon all icons 404`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19719,7 +20207,7 @@ exports[`Icon all icons 398`] = ` `; -exports[`Icon all icons 399`] = ` +exports[`Icon all icons 405`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19768,7 +20256,7 @@ exports[`Icon all icons 399`] = ` `; -exports[`Icon all icons 400`] = ` +exports[`Icon all icons 406`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19816,7 +20304,7 @@ exports[`Icon all icons 400`] = ` `; -exports[`Icon all icons 401`] = ` +exports[`Icon all icons 407`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19865,7 +20353,7 @@ exports[`Icon all icons 401`] = ` `; -exports[`Icon all icons 402`] = ` +exports[`Icon all icons 408`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19913,7 +20401,7 @@ exports[`Icon all icons 402`] = ` `; -exports[`Icon all icons 403`] = ` +exports[`Icon all icons 409`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -19962,7 +20450,7 @@ exports[`Icon all icons 403`] = ` `; -exports[`Icon all icons 404`] = ` +exports[`Icon all icons 410`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20011,7 +20499,7 @@ exports[`Icon all icons 404`] = ` `; -exports[`Icon all icons 405`] = ` +exports[`Icon all icons 411`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20060,7 +20548,7 @@ exports[`Icon all icons 405`] = ` `; -exports[`Icon all icons 406`] = ` +exports[`Icon all icons 412`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20109,7 +20597,7 @@ exports[`Icon all icons 406`] = ` `; -exports[`Icon all icons 407`] = ` +exports[`Icon all icons 413`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20168,7 +20656,7 @@ exports[`Icon all icons 407`] = ` `; -exports[`Icon all icons 408`] = ` +exports[`Icon all icons 414`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20217,7 +20705,7 @@ exports[`Icon all icons 408`] = ` `; -exports[`Icon all icons 409`] = ` +exports[`Icon all icons 415`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20266,7 +20754,7 @@ exports[`Icon all icons 409`] = ` `; -exports[`Icon all icons 410`] = ` +exports[`Icon all icons 416`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20315,7 +20803,7 @@ exports[`Icon all icons 410`] = ` `; -exports[`Icon all icons 411`] = ` +exports[`Icon all icons 417`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20364,7 +20852,7 @@ exports[`Icon all icons 411`] = ` `; -exports[`Icon all icons 412`] = ` +exports[`Icon all icons 418`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20413,7 +20901,7 @@ exports[`Icon all icons 412`] = ` `; -exports[`Icon all icons 413`] = ` +exports[`Icon all icons 419`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20462,7 +20950,7 @@ exports[`Icon all icons 413`] = ` `; -exports[`Icon all icons 414`] = ` +exports[`Icon all icons 420`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20511,7 +20999,7 @@ exports[`Icon all icons 414`] = ` `; -exports[`Icon all icons 415`] = ` +exports[`Icon all icons 421`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20559,7 +21047,7 @@ exports[`Icon all icons 415`] = ` `; -exports[`Icon all icons 416`] = ` +exports[`Icon all icons 422`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20608,7 +21096,7 @@ exports[`Icon all icons 416`] = ` `; -exports[`Icon all icons 417`] = ` +exports[`Icon all icons 423`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20665,7 +21153,7 @@ exports[`Icon all icons 417`] = ` `; -exports[`Icon all icons 418`] = ` +exports[`Icon all icons 424`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20714,7 +21202,7 @@ exports[`Icon all icons 418`] = ` `; -exports[`Icon all icons 419`] = ` +exports[`Icon all icons 425`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20765,7 +21253,7 @@ exports[`Icon all icons 419`] = ` `; -exports[`Icon all icons 420`] = ` +exports[`Icon all icons 426`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20813,7 +21301,7 @@ exports[`Icon all icons 420`] = ` `; -exports[`Icon all icons 421`] = ` +exports[`Icon all icons 427`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20870,7 +21358,7 @@ exports[`Icon all icons 421`] = ` `; -exports[`Icon all icons 422`] = ` +exports[`Icon all icons 428`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20918,7 +21406,7 @@ exports[`Icon all icons 422`] = ` `; -exports[`Icon all icons 423`] = ` +exports[`Icon all icons 429`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -20974,7 +21462,7 @@ exports[`Icon all icons 423`] = ` `; -exports[`Icon all icons 424`] = ` +exports[`Icon all icons 430`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21020,7 +21508,7 @@ exports[`Icon all icons 424`] = ` `; -exports[`Icon all icons 425`] = ` +exports[`Icon all icons 431`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21069,7 +21557,7 @@ exports[`Icon all icons 425`] = ` `; -exports[`Icon all icons 426`] = ` +exports[`Icon all icons 432`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21118,7 +21606,7 @@ exports[`Icon all icons 426`] = ` `; -exports[`Icon all icons 427`] = ` +exports[`Icon all icons 433`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21167,7 +21655,7 @@ exports[`Icon all icons 427`] = ` `; -exports[`Icon all icons 428`] = ` +exports[`Icon all icons 434`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21218,7 +21706,7 @@ exports[`Icon all icons 428`] = ` `; -exports[`Icon all icons 429`] = ` +exports[`Icon all icons 435`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21269,7 +21757,7 @@ exports[`Icon all icons 429`] = ` `; -exports[`Icon all icons 430`] = ` +exports[`Icon all icons 436`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21319,7 +21807,7 @@ exports[`Icon all icons 430`] = ` `; -exports[`Icon all icons 431`] = ` +exports[`Icon all icons 437`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21368,7 +21856,7 @@ exports[`Icon all icons 431`] = ` `; -exports[`Icon all icons 432`] = ` +exports[`Icon all icons 438`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21417,7 +21905,7 @@ exports[`Icon all icons 432`] = ` `; -exports[`Icon all icons 433`] = ` +exports[`Icon all icons 439`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21466,7 +21954,7 @@ exports[`Icon all icons 433`] = ` `; -exports[`Icon all icons 434`] = ` +exports[`Icon all icons 440`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21515,7 +22003,7 @@ exports[`Icon all icons 434`] = ` `; -exports[`Icon all icons 435`] = ` +exports[`Icon all icons 441`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21564,7 +22052,7 @@ exports[`Icon all icons 435`] = ` `; -exports[`Icon all icons 436`] = ` +exports[`Icon all icons 442`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21613,7 +22101,7 @@ exports[`Icon all icons 436`] = ` `; -exports[`Icon all icons 437`] = ` +exports[`Icon all icons 443`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21659,7 +22147,7 @@ exports[`Icon all icons 437`] = ` `; -exports[`Icon all icons 438`] = ` +exports[`Icon all icons 444`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21705,7 +22193,7 @@ exports[`Icon all icons 438`] = ` `; -exports[`Icon all icons 439`] = ` +exports[`Icon all icons 445`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21754,7 +22242,7 @@ exports[`Icon all icons 439`] = ` `; -exports[`Icon all icons 440`] = ` +exports[`Icon all icons 446`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21805,7 +22293,7 @@ exports[`Icon all icons 440`] = ` `; -exports[`Icon all icons 441`] = ` +exports[`Icon all icons 447`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21853,7 +22341,7 @@ exports[`Icon all icons 441`] = ` `; -exports[`Icon all icons 442`] = ` +exports[`Icon all icons 448`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21889,20 +22377,34 @@ exports[`Icon all icons 442`] = ` } - + + + + + + + + `; -exports[`Icon all icons 443`] = ` +exports[`Icon all icons 449`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -21938,12 +22440,12 @@ exports[`Icon all icons 443`] = ` } `; -exports[`Icon all icons 444`] = ` +exports[`Icon all icons 450`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + + + + +`; + +exports[`Icon all icons 451`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22000,7 +22551,7 @@ exports[`Icon all icons 444`] = ` `; -exports[`Icon all icons 445`] = ` +exports[`Icon all icons 452`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22049,7 +22600,7 @@ exports[`Icon all icons 445`] = ` `; -exports[`Icon all icons 446`] = ` +exports[`Icon all icons 453`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22098,7 +22649,7 @@ exports[`Icon all icons 446`] = ` `; -exports[`Icon all icons 447`] = ` +exports[`Icon all icons 454`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22147,7 +22698,7 @@ exports[`Icon all icons 447`] = ` `; -exports[`Icon all icons 448`] = ` +exports[`Icon all icons 455`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22196,7 +22747,7 @@ exports[`Icon all icons 448`] = ` `; -exports[`Icon all icons 449`] = ` +exports[`Icon all icons 456`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22245,7 +22796,7 @@ exports[`Icon all icons 449`] = ` `; -exports[`Icon all icons 450`] = ` +exports[`Icon all icons 457`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22293,7 +22844,7 @@ exports[`Icon all icons 450`] = ` `; -exports[`Icon all icons 451`] = ` +exports[`Icon all icons 458`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22342,7 +22893,7 @@ exports[`Icon all icons 451`] = ` `; -exports[`Icon all icons 452`] = ` +exports[`Icon all icons 459`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22391,7 +22942,7 @@ exports[`Icon all icons 452`] = ` `; -exports[`Icon all icons 453`] = ` +exports[`Icon all icons 460`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22440,7 +22991,7 @@ exports[`Icon all icons 453`] = ` `; -exports[`Icon all icons 454`] = ` +exports[`Icon all icons 461`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22489,7 +23040,7 @@ exports[`Icon all icons 454`] = ` `; -exports[`Icon all icons 455`] = ` +exports[`Icon all icons 462`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22538,7 +23089,7 @@ exports[`Icon all icons 455`] = ` `; -exports[`Icon all icons 456`] = ` +exports[`Icon all icons 463`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22587,7 +23138,7 @@ exports[`Icon all icons 456`] = ` `; -exports[`Icon all icons 457`] = ` +exports[`Icon all icons 464`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22636,7 +23187,7 @@ exports[`Icon all icons 457`] = ` `; -exports[`Icon all icons 458`] = ` +exports[`Icon all icons 465`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22685,7 +23236,7 @@ exports[`Icon all icons 458`] = ` `; -exports[`Icon all icons 459`] = ` +exports[`Icon all icons 466`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22734,7 +23285,7 @@ exports[`Icon all icons 459`] = ` `; -exports[`Icon all icons 460`] = ` +exports[`Icon all icons 467`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22783,7 +23334,7 @@ exports[`Icon all icons 460`] = ` `; -exports[`Icon all icons 461`] = ` +exports[`Icon all icons 468`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22832,7 +23383,7 @@ exports[`Icon all icons 461`] = ` `; -exports[`Icon all icons 462`] = ` +exports[`Icon all icons 469`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22881,7 +23432,7 @@ exports[`Icon all icons 462`] = ` `; -exports[`Icon all icons 463`] = ` +exports[`Icon all icons 470`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22930,7 +23481,7 @@ exports[`Icon all icons 463`] = ` `; -exports[`Icon all icons 464`] = ` +exports[`Icon all icons 471`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -22979,7 +23530,7 @@ exports[`Icon all icons 464`] = ` `; -exports[`Icon all icons 465`] = ` +exports[`Icon all icons 472`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23028,7 +23579,7 @@ exports[`Icon all icons 465`] = ` `; -exports[`Icon all icons 466`] = ` +exports[`Icon all icons 473`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23077,7 +23628,7 @@ exports[`Icon all icons 466`] = ` `; -exports[`Icon all icons 467`] = ` +exports[`Icon all icons 474`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23126,7 +23677,7 @@ exports[`Icon all icons 467`] = ` `; -exports[`Icon all icons 468`] = ` +exports[`Icon all icons 475`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23175,7 +23726,7 @@ exports[`Icon all icons 468`] = ` `; -exports[`Icon all icons 469`] = ` +exports[`Icon all icons 476`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23224,7 +23775,7 @@ exports[`Icon all icons 469`] = ` `; -exports[`Icon all icons 470`] = ` +exports[`Icon all icons 477`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23273,7 +23824,7 @@ exports[`Icon all icons 470`] = ` `; -exports[`Icon all icons 471`] = ` +exports[`Icon all icons 478`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23322,7 +23873,7 @@ exports[`Icon all icons 471`] = ` `; -exports[`Icon all icons 472`] = ` +exports[`Icon all icons 479`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23371,7 +23922,7 @@ exports[`Icon all icons 472`] = ` `; -exports[`Icon all icons 473`] = ` +exports[`Icon all icons 480`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23421,7 +23972,7 @@ exports[`Icon all icons 473`] = ` `; -exports[`Icon all icons 474`] = ` +exports[`Icon all icons 481`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23470,7 +24021,7 @@ exports[`Icon all icons 474`] = ` `; -exports[`Icon all icons 475`] = ` +exports[`Icon all icons 482`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23519,7 +24070,7 @@ exports[`Icon all icons 475`] = ` `; -exports[`Icon all icons 476`] = ` +exports[`Icon all icons 483`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23567,7 +24118,7 @@ exports[`Icon all icons 476`] = ` `; -exports[`Icon all icons 477`] = ` +exports[`Icon all icons 484`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23631,7 +24182,7 @@ exports[`Icon all icons 477`] = ` `; -exports[`Icon all icons 478`] = ` +exports[`Icon all icons 485`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23679,7 +24230,7 @@ exports[`Icon all icons 478`] = ` `; -exports[`Icon all icons 479`] = ` +exports[`Icon all icons 486`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23727,7 +24278,7 @@ exports[`Icon all icons 479`] = ` `; -exports[`Icon all icons 480`] = ` +exports[`Icon all icons 487`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23776,7 +24327,7 @@ exports[`Icon all icons 480`] = ` `; -exports[`Icon all icons 481`] = ` +exports[`Icon all icons 488`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23817,14 +24368,31 @@ exports[`Icon all icons 481`] = ` viewBox="0 0 24 24" > + + + + + + `; -exports[`Icon all icons 482`] = ` +exports[`Icon all icons 489`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23873,7 +24441,7 @@ exports[`Icon all icons 482`] = ` `; -exports[`Icon all icons 483`] = ` +exports[`Icon all icons 490`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23921,7 +24489,7 @@ exports[`Icon all icons 483`] = ` `; -exports[`Icon all icons 484`] = ` +exports[`Icon all icons 491`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -23970,7 +24538,7 @@ exports[`Icon all icons 484`] = ` `; -exports[`Icon all icons 485`] = ` +exports[`Icon all icons 492`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24019,7 +24587,7 @@ exports[`Icon all icons 485`] = ` `; -exports[`Icon all icons 486`] = ` +exports[`Icon all icons 493`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24059,15 +24627,30 @@ exports[`Icon all icons 486`] = ` class="c0" viewBox="0 0 24 24" > - + + + + + + + + `; -exports[`Icon all icons 487`] = ` +exports[`Icon all icons 494`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24115,7 +24698,7 @@ exports[`Icon all icons 487`] = ` `; -exports[`Icon all icons 488`] = ` +exports[`Icon all icons 495`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24156,14 +24739,18 @@ exports[`Icon all icons 488`] = ` viewBox="0 0 24 24" > + `; -exports[`Icon all icons 489`] = ` +exports[`Icon all icons 496`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24212,7 +24799,7 @@ exports[`Icon all icons 489`] = ` `; -exports[`Icon all icons 490`] = ` +exports[`Icon all icons 497`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24269,7 +24856,7 @@ exports[`Icon all icons 490`] = ` `; -exports[`Icon all icons 491`] = ` +exports[`Icon all icons 498`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24318,7 +24905,7 @@ exports[`Icon all icons 491`] = ` `; -exports[`Icon all icons 492`] = ` +exports[`Icon all icons 499`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24366,7 +24953,7 @@ exports[`Icon all icons 492`] = ` `; -exports[`Icon all icons 493`] = ` +exports[`Icon all icons 500`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24414,7 +25001,7 @@ exports[`Icon all icons 493`] = ` `; -exports[`Icon all icons 494`] = ` +exports[`Icon all icons 501`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24463,7 +25050,7 @@ exports[`Icon all icons 494`] = ` `; -exports[`Icon all icons 495`] = ` +exports[`Icon all icons 502`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24515,7 +25102,7 @@ exports[`Icon all icons 495`] = ` `; -exports[`Icon all icons 496`] = ` +exports[`Icon all icons 503`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24564,7 +25151,7 @@ exports[`Icon all icons 496`] = ` `; -exports[`Icon all icons 497`] = ` +exports[`Icon all icons 504`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24614,7 +25201,7 @@ exports[`Icon all icons 497`] = ` `; -exports[`Icon all icons 498`] = ` +exports[`Icon all icons 505`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24663,7 +25250,7 @@ exports[`Icon all icons 498`] = ` `; -exports[`Icon all icons 499`] = ` +exports[`Icon all icons 506`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24715,7 +25302,7 @@ exports[`Icon all icons 499`] = ` `; -exports[`Icon all icons 500`] = ` +exports[`Icon all icons 507`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24764,7 +25351,7 @@ exports[`Icon all icons 500`] = ` `; -exports[`Icon all icons 501`] = ` +exports[`Icon all icons 508`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24816,7 +25403,7 @@ exports[`Icon all icons 501`] = ` `; -exports[`Icon all icons 502`] = ` +exports[`Icon all icons 509`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24869,7 +25456,7 @@ exports[`Icon all icons 502`] = ` `; -exports[`Icon all icons 503`] = ` +exports[`Icon all icons 510`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24921,7 +25508,7 @@ exports[`Icon all icons 503`] = ` `; -exports[`Icon all icons 504`] = ` +exports[`Icon all icons 511`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -24970,7 +25557,7 @@ exports[`Icon all icons 504`] = ` `; -exports[`Icon all icons 505`] = ` +exports[`Icon all icons 512`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25019,7 +25606,7 @@ exports[`Icon all icons 505`] = ` `; -exports[`Icon all icons 506`] = ` +exports[`Icon all icons 513`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25069,7 +25656,7 @@ exports[`Icon all icons 506`] = ` `; -exports[`Icon all icons 507`] = ` +exports[`Icon all icons 514`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25118,7 +25705,7 @@ exports[`Icon all icons 507`] = ` `; -exports[`Icon all icons 508`] = ` +exports[`Icon all icons 515`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25167,7 +25754,7 @@ exports[`Icon all icons 508`] = ` `; -exports[`Icon all icons 509`] = ` +exports[`Icon all icons 516`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25216,7 +25803,7 @@ exports[`Icon all icons 509`] = ` `; -exports[`Icon all icons 510`] = ` +exports[`Icon all icons 517`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25265,7 +25852,7 @@ exports[`Icon all icons 510`] = ` `; -exports[`Icon all icons 511`] = ` +exports[`Icon all icons 518`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25314,7 +25901,7 @@ exports[`Icon all icons 511`] = ` `; -exports[`Icon all icons 512`] = ` +exports[`Icon all icons 519`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25363,7 +25950,7 @@ exports[`Icon all icons 512`] = ` `; -exports[`Icon all icons 513`] = ` +exports[`Icon all icons 520`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25409,7 +25996,7 @@ exports[`Icon all icons 513`] = ` `; -exports[`Icon all icons 514`] = ` +exports[`Icon all icons 521`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25457,7 +26044,7 @@ exports[`Icon all icons 514`] = ` `; -exports[`Icon all icons 515`] = ` +exports[`Icon all icons 522`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25503,7 +26090,7 @@ exports[`Icon all icons 515`] = ` `; -exports[`Icon all icons 516`] = ` +exports[`Icon all icons 523`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25552,7 +26139,7 @@ exports[`Icon all icons 516`] = ` `; -exports[`Icon all icons 517`] = ` +exports[`Icon all icons 524`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25601,7 +26188,7 @@ exports[`Icon all icons 517`] = ` `; -exports[`Icon all icons 518`] = ` +exports[`Icon all icons 525`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25652,7 +26239,7 @@ exports[`Icon all icons 518`] = ` `; -exports[`Icon all icons 519`] = ` +exports[`Icon all icons 526`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25698,7 +26285,7 @@ exports[`Icon all icons 519`] = ` `; -exports[`Icon all icons 520`] = ` +exports[`Icon all icons 527`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25747,7 +26334,7 @@ exports[`Icon all icons 520`] = ` `; -exports[`Icon all icons 521`] = ` +exports[`Icon all icons 528`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25795,7 +26382,7 @@ exports[`Icon all icons 521`] = ` `; -exports[`Icon all icons 522`] = ` +exports[`Icon all icons 529`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25843,7 +26430,7 @@ exports[`Icon all icons 522`] = ` `; -exports[`Icon all icons 523`] = ` +exports[`Icon all icons 530`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25894,7 +26481,7 @@ exports[`Icon all icons 523`] = ` `; -exports[`Icon all icons 524`] = ` +exports[`Icon all icons 531`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25943,7 +26530,7 @@ exports[`Icon all icons 524`] = ` `; -exports[`Icon all icons 525`] = ` +exports[`Icon all icons 532`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -25992,7 +26579,7 @@ exports[`Icon all icons 525`] = ` `; -exports[`Icon all icons 526`] = ` +exports[`Icon all icons 533`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26041,7 +26628,7 @@ exports[`Icon all icons 526`] = ` `; -exports[`Icon all icons 527`] = ` +exports[`Icon all icons 534`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26090,7 +26677,7 @@ exports[`Icon all icons 527`] = ` `; -exports[`Icon all icons 528`] = ` +exports[`Icon all icons 535`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26139,7 +26726,7 @@ exports[`Icon all icons 528`] = ` `; -exports[`Icon all icons 529`] = ` +exports[`Icon all icons 536`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26188,7 +26775,7 @@ exports[`Icon all icons 529`] = ` `; -exports[`Icon all icons 530`] = ` +exports[`Icon all icons 537`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26237,7 +26824,7 @@ exports[`Icon all icons 530`] = ` `; -exports[`Icon all icons 531`] = ` +exports[`Icon all icons 538`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26286,7 +26873,7 @@ exports[`Icon all icons 531`] = ` `; -exports[`Icon all icons 532`] = ` +exports[`Icon all icons 539`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26335,7 +26922,7 @@ exports[`Icon all icons 532`] = ` `; -exports[`Icon all icons 533`] = ` +exports[`Icon all icons 540`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26384,7 +26971,7 @@ exports[`Icon all icons 533`] = ` `; -exports[`Icon all icons 534`] = ` +exports[`Icon all icons 541`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26433,7 +27020,7 @@ exports[`Icon all icons 534`] = ` `; -exports[`Icon all icons 535`] = ` +exports[`Icon all icons 542`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26484,7 +27071,7 @@ exports[`Icon all icons 535`] = ` `; -exports[`Icon all icons 536`] = ` +exports[`Icon all icons 543`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26533,7 +27120,7 @@ exports[`Icon all icons 536`] = ` `; -exports[`Icon all icons 537`] = ` +exports[`Icon all icons 544`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26582,7 +27169,7 @@ exports[`Icon all icons 537`] = ` `; -exports[`Icon all icons 538`] = ` +exports[`Icon all icons 545`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26631,7 +27218,7 @@ exports[`Icon all icons 538`] = ` `; -exports[`Icon all icons 539`] = ` +exports[`Icon all icons 546`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26680,7 +27267,7 @@ exports[`Icon all icons 539`] = ` `; -exports[`Icon all icons 540`] = ` +exports[`Icon all icons 547`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26726,7 +27313,7 @@ exports[`Icon all icons 540`] = ` `; -exports[`Icon all icons 541`] = ` +exports[`Icon all icons 548`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26772,7 +27359,7 @@ exports[`Icon all icons 541`] = ` `; -exports[`Icon all icons 542`] = ` +exports[`Icon all icons 549`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26818,7 +27405,7 @@ exports[`Icon all icons 542`] = ` `; -exports[`Icon all icons 543`] = ` +exports[`Icon all icons 550`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26864,7 +27451,7 @@ exports[`Icon all icons 543`] = ` `; -exports[`Icon all icons 544`] = ` +exports[`Icon all icons 551`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26913,7 +27500,54 @@ exports[`Icon all icons 544`] = ` `; -exports[`Icon all icons 545`] = ` +exports[`Icon all icons 552`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + + + + +`; + +exports[`Icon all icons 553`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -26962,7 +27596,7 @@ exports[`Icon all icons 545`] = ` `; -exports[`Icon all icons 546`] = ` +exports[`Icon all icons 554`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27011,7 +27645,7 @@ exports[`Icon all icons 546`] = ` `; -exports[`Icon all icons 547`] = ` +exports[`Icon all icons 555`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27060,7 +27694,7 @@ exports[`Icon all icons 547`] = ` `; -exports[`Icon all icons 548`] = ` +exports[`Icon all icons 556`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27109,7 +27743,7 @@ exports[`Icon all icons 548`] = ` `; -exports[`Icon all icons 549`] = ` +exports[`Icon all icons 557`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27174,7 +27808,7 @@ exports[`Icon all icons 549`] = ` `; -exports[`Icon all icons 550`] = ` +exports[`Icon all icons 558`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27223,7 +27857,7 @@ exports[`Icon all icons 550`] = ` `; -exports[`Icon all icons 551`] = ` +exports[`Icon all icons 559`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27272,7 +27906,7 @@ exports[`Icon all icons 551`] = ` `; -exports[`Icon all icons 552`] = ` +exports[`Icon all icons 560`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27321,7 +27955,7 @@ exports[`Icon all icons 552`] = ` `; -exports[`Icon all icons 553`] = ` +exports[`Icon all icons 561`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27370,7 +28004,7 @@ exports[`Icon all icons 553`] = ` `; -exports[`Icon all icons 554`] = ` +exports[`Icon all icons 562`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27419,7 +28053,7 @@ exports[`Icon all icons 554`] = ` `; -exports[`Icon all icons 555`] = ` +exports[`Icon all icons 563`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27468,7 +28102,7 @@ exports[`Icon all icons 555`] = ` `; -exports[`Icon all icons 556`] = ` +exports[`Icon all icons 564`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27517,7 +28151,7 @@ exports[`Icon all icons 556`] = ` `; -exports[`Icon all icons 557`] = ` +exports[`Icon all icons 565`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27566,7 +28200,7 @@ exports[`Icon all icons 557`] = ` `; -exports[`Icon all icons 558`] = ` +exports[`Icon all icons 566`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27615,7 +28249,7 @@ exports[`Icon all icons 558`] = ` `; -exports[`Icon all icons 559`] = ` +exports[`Icon all icons 567`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27664,7 +28298,7 @@ exports[`Icon all icons 559`] = ` `; -exports[`Icon all icons 560`] = ` +exports[`Icon all icons 568`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27713,7 +28347,7 @@ exports[`Icon all icons 560`] = ` `; -exports[`Icon all icons 561`] = ` +exports[`Icon all icons 569`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27762,7 +28396,7 @@ exports[`Icon all icons 561`] = ` `; -exports[`Icon all icons 562`] = ` +exports[`Icon all icons 570`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27811,7 +28445,7 @@ exports[`Icon all icons 562`] = ` `; -exports[`Icon all icons 563`] = ` +exports[`Icon all icons 571`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27860,7 +28494,7 @@ exports[`Icon all icons 563`] = ` `; -exports[`Icon all icons 564`] = ` +exports[`Icon all icons 572`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27910,7 +28544,7 @@ exports[`Icon all icons 564`] = ` `; -exports[`Icon all icons 565`] = ` +exports[`Icon all icons 573`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -27958,7 +28592,7 @@ exports[`Icon all icons 565`] = ` `; -exports[`Icon all icons 566`] = ` +exports[`Icon all icons 574`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28006,7 +28640,56 @@ exports[`Icon all icons 566`] = ` `; -exports[`Icon all icons 567`] = ` +exports[`Icon all icons 575`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + + + + +`; + +exports[`Icon all icons 576`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28054,7 +28737,7 @@ exports[`Icon all icons 567`] = ` `; -exports[`Icon all icons 568`] = ` +exports[`Icon all icons 577`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28102,7 +28785,7 @@ exports[`Icon all icons 568`] = ` `; -exports[`Icon all icons 569`] = ` +exports[`Icon all icons 578`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28148,7 +28831,7 @@ exports[`Icon all icons 569`] = ` `; -exports[`Icon all icons 570`] = ` +exports[`Icon all icons 579`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28194,7 +28877,7 @@ exports[`Icon all icons 570`] = ` `; -exports[`Icon all icons 571`] = ` +exports[`Icon all icons 580`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28243,7 +28926,7 @@ exports[`Icon all icons 571`] = ` `; -exports[`Icon all icons 572`] = ` +exports[`Icon all icons 581`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28292,7 +28975,7 @@ exports[`Icon all icons 572`] = ` `; -exports[`Icon all icons 573`] = ` +exports[`Icon all icons 582`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28353,7 +29036,7 @@ exports[`Icon all icons 573`] = ` `; -exports[`Icon all icons 574`] = ` +exports[`Icon all icons 583`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28402,7 +29085,7 @@ exports[`Icon all icons 574`] = ` `; -exports[`Icon all icons 575`] = ` +exports[`Icon all icons 584`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28451,7 +29134,7 @@ exports[`Icon all icons 575`] = ` `; -exports[`Icon all icons 576`] = ` +exports[`Icon all icons 585`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28500,7 +29183,7 @@ exports[`Icon all icons 576`] = ` `; -exports[`Icon all icons 577`] = ` +exports[`Icon all icons 586`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28549,7 +29232,7 @@ exports[`Icon all icons 577`] = ` `; -exports[`Icon all icons 578`] = ` +exports[`Icon all icons 587`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28598,7 +29281,7 @@ exports[`Icon all icons 578`] = ` `; -exports[`Icon all icons 579`] = ` +exports[`Icon all icons 588`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28647,7 +29330,7 @@ exports[`Icon all icons 579`] = ` `; -exports[`Icon all icons 580`] = ` +exports[`Icon all icons 589`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28696,7 +29379,7 @@ exports[`Icon all icons 580`] = ` `; -exports[`Icon all icons 581`] = ` +exports[`Icon all icons 590`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28745,7 +29428,7 @@ exports[`Icon all icons 581`] = ` `; -exports[`Icon all icons 582`] = ` +exports[`Icon all icons 591`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28794,7 +29477,7 @@ exports[`Icon all icons 582`] = ` `; -exports[`Icon all icons 583`] = ` +exports[`Icon all icons 592`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28843,7 +29526,7 @@ exports[`Icon all icons 583`] = ` `; -exports[`Icon all icons 584`] = ` +exports[`Icon all icons 593`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28892,7 +29575,7 @@ exports[`Icon all icons 584`] = ` `; -exports[`Icon all icons 585`] = ` +exports[`Icon all icons 594`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28941,7 +29624,7 @@ exports[`Icon all icons 585`] = ` `; -exports[`Icon all icons 586`] = ` +exports[`Icon all icons 595`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -28990,7 +29673,7 @@ exports[`Icon all icons 586`] = ` `; -exports[`Icon all icons 587`] = ` +exports[`Icon all icons 596`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29039,7 +29722,7 @@ exports[`Icon all icons 587`] = ` `; -exports[`Icon all icons 588`] = ` +exports[`Icon all icons 597`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29088,7 +29771,7 @@ exports[`Icon all icons 588`] = ` `; -exports[`Icon all icons 589`] = ` +exports[`Icon all icons 598`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29137,7 +29820,7 @@ exports[`Icon all icons 589`] = ` `; -exports[`Icon all icons 590`] = ` +exports[`Icon all icons 599`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29186,7 +29869,7 @@ exports[`Icon all icons 590`] = ` `; -exports[`Icon all icons 591`] = ` +exports[`Icon all icons 600`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29235,7 +29918,7 @@ exports[`Icon all icons 591`] = ` `; -exports[`Icon all icons 592`] = ` +exports[`Icon all icons 601`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29284,7 +29967,70 @@ exports[`Icon all icons 592`] = ` `; -exports[`Icon all icons 593`] = ` +exports[`Icon all icons 602`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + + + + + + + + + + + +`; + +exports[`Icon all icons 603`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29333,7 +30079,7 @@ exports[`Icon all icons 593`] = ` `; -exports[`Icon all icons 594`] = ` +exports[`Icon all icons 604`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29382,7 +30128,7 @@ exports[`Icon all icons 594`] = ` `; -exports[`Icon all icons 595`] = ` +exports[`Icon all icons 605`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29430,7 +30176,7 @@ exports[`Icon all icons 595`] = ` `; -exports[`Icon all icons 596`] = ` +exports[`Icon all icons 606`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29479,7 +30225,7 @@ exports[`Icon all icons 596`] = ` `; -exports[`Icon all icons 597`] = ` +exports[`Icon all icons 607`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29528,7 +30274,7 @@ exports[`Icon all icons 597`] = ` `; -exports[`Icon all icons 598`] = ` +exports[`Icon all icons 608`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29576,7 +30322,7 @@ exports[`Icon all icons 598`] = ` `; -exports[`Icon all icons 599`] = ` +exports[`Icon all icons 609`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29625,7 +30371,7 @@ exports[`Icon all icons 599`] = ` `; -exports[`Icon all icons 600`] = ` +exports[`Icon all icons 610`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29673,7 +30419,7 @@ exports[`Icon all icons 600`] = ` `; -exports[`Icon all icons 601`] = ` +exports[`Icon all icons 611`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29722,7 +30468,7 @@ exports[`Icon all icons 601`] = ` `; -exports[`Icon all icons 602`] = ` +exports[`Icon all icons 612`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29771,7 +30517,7 @@ exports[`Icon all icons 602`] = ` `; -exports[`Icon all icons 603`] = ` +exports[`Icon all icons 613`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29820,7 +30566,7 @@ exports[`Icon all icons 603`] = ` `; -exports[`Icon all icons 604`] = ` +exports[`Icon all icons 614`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29869,7 +30615,7 @@ exports[`Icon all icons 604`] = ` `; -exports[`Icon all icons 605`] = ` +exports[`Icon all icons 615`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29918,7 +30664,7 @@ exports[`Icon all icons 605`] = ` `; -exports[`Icon all icons 606`] = ` +exports[`Icon all icons 616`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -29967,7 +30713,7 @@ exports[`Icon all icons 606`] = ` `; -exports[`Icon all icons 607`] = ` +exports[`Icon all icons 617`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30051,7 +30797,117 @@ exports[`Icon all icons 607`] = ` `; -exports[`Icon all icons 608`] = ` +exports[`Icon all icons 618`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + + + + +`; + +exports[`Icon all icons 619`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + + + + + + + + + + + +`; + +exports[`Icon all icons 620`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30102,7 +30958,7 @@ exports[`Icon all icons 608`] = ` `; -exports[`Icon all icons 609`] = ` +exports[`Icon all icons 621`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30153,7 +31009,7 @@ exports[`Icon all icons 609`] = ` `; -exports[`Icon all icons 610`] = ` +exports[`Icon all icons 622`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30210,7 +31066,7 @@ exports[`Icon all icons 610`] = ` `; -exports[`Icon all icons 611`] = ` +exports[`Icon all icons 623`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30267,7 +31123,7 @@ exports[`Icon all icons 611`] = ` `; -exports[`Icon all icons 612`] = ` +exports[`Icon all icons 624`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30326,7 +31182,7 @@ exports[`Icon all icons 612`] = ` `; -exports[`Icon all icons 613`] = ` +exports[`Icon all icons 625`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30375,7 +31231,7 @@ exports[`Icon all icons 613`] = ` `; -exports[`Icon all icons 614`] = ` +exports[`Icon all icons 626`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30439,7 +31295,7 @@ exports[`Icon all icons 614`] = ` `; -exports[`Icon all icons 615`] = ` +exports[`Icon all icons 627`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30487,7 +31343,7 @@ exports[`Icon all icons 615`] = ` `; -exports[`Icon all icons 616`] = ` +exports[`Icon all icons 628`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30535,7 +31391,7 @@ exports[`Icon all icons 616`] = ` `; -exports[`Icon all icons 617`] = ` +exports[`Icon all icons 629`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30584,7 +31440,119 @@ exports[`Icon all icons 617`] = ` `; -exports[`Icon all icons 618`] = ` +exports[`Icon all icons 630`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + + + + +`; + +exports[`Icon all icons 631`] = ` +.c0 { + display: inline-block; + -webkit-flex: 0 0 auto; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: 24px; + height: 24px; + fill: #666666; + stroke: #666666; +} + +.c0 g { + fill: inherit; + stroke: inherit; +} + +.c0 *:not([stroke])[fill='none'] { + stroke-width: 0; +} + +.c0 *[stroke*='#'], +.c0 *[STROKE*='#'] { + stroke: inherit; + fill: none; +} + +.c0 *[fill-rule], +.c0 *[FILL-RULE], +.c0 *[fill*='#'], +.c0 *[FILL*='#'] { + fill: inherit; + stroke: none; +} + + + + + + + + + + + + +`; + +exports[`Icon all icons 632`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30635,7 +31603,7 @@ exports[`Icon all icons 618`] = ` `; -exports[`Icon all icons 619`] = ` +exports[`Icon all icons 633`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30683,7 +31651,7 @@ exports[`Icon all icons 619`] = ` `; -exports[`Icon all icons 620`] = ` +exports[`Icon all icons 634`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30732,7 +31700,7 @@ exports[`Icon all icons 620`] = ` `; -exports[`Icon all icons 621`] = ` +exports[`Icon all icons 635`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30781,7 +31749,7 @@ exports[`Icon all icons 621`] = ` `; -exports[`Icon all icons 622`] = ` +exports[`Icon all icons 636`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; @@ -30832,7 +31800,7 @@ exports[`Icon all icons 622`] = ` `; -exports[`Icon all icons 623`] = ` +exports[`Icon all icons 637`] = ` .c0 { display: inline-block; -webkit-flex: 0 0 auto; diff --git a/src/js/icons/AdobeCreativeCloud.js b/src/js/icons/AdobeCreativeCloud.js new file mode 100644 index 000000000..620394493 --- /dev/null +++ b/src/js/icons/AdobeCreativeCloud.js @@ -0,0 +1,13 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const AdobeCreativeCloud = forwardRef((props, ref) => ( + + + +)); + +AdobeCreativeCloud.displayName = 'AdobeCreativeCloud'; + +export { AdobeCreativeCloud }; diff --git a/src/js/icons/AppleMusic.js b/src/js/icons/AppleMusic.js new file mode 100644 index 000000000..e4cabfa5c --- /dev/null +++ b/src/js/icons/AppleMusic.js @@ -0,0 +1,36 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const AppleMusic = forwardRef((props, ref) => ( + + + + + + + + + + + + + + +)); + +AppleMusic.displayName = 'AppleMusic'; + +export { AppleMusic }; diff --git a/src/js/icons/ApplePodcasts.js b/src/js/icons/ApplePodcasts.js new file mode 100644 index 000000000..536fc1982 --- /dev/null +++ b/src/js/icons/ApplePodcasts.js @@ -0,0 +1,41 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const ApplePodcasts = forwardRef((props, ref) => ( + + + + + + + + + + + + + + +)); + +ApplePodcasts.displayName = 'ApplePodcasts'; + +export { ApplePodcasts }; diff --git a/src/js/icons/Edge.js b/src/js/icons/Edge.js index dd06d8dec..e48d2ec6b 100644 --- a/src/js/icons/Edge.js +++ b/src/js/icons/Edge.js @@ -4,7 +4,64 @@ import { StyledIcon } from '../StyledIcon'; const Edge = forwardRef((props, ref) => ( - + + + + + + + + + + + + + + + + + + + + + + + + + + + + )); diff --git a/src/js/icons/Facebook.js b/src/js/icons/Facebook.js index c3dfea7b3..12e488a95 100644 --- a/src/js/icons/Facebook.js +++ b/src/js/icons/Facebook.js @@ -4,7 +4,17 @@ import { StyledIcon } from '../StyledIcon'; const Facebook = forwardRef((props, ref) => ( - + + + + + + + + )); diff --git a/src/js/icons/Figma.js b/src/js/icons/Figma.js index 3ba4c517c..d52e582ef 100644 --- a/src/js/icons/Figma.js +++ b/src/js/icons/Figma.js @@ -4,7 +4,23 @@ import { StyledIcon } from '../StyledIcon'; const Figma = forwardRef((props, ref) => ( - + + + + + )); diff --git a/src/js/icons/GooglePay.js b/src/js/icons/GooglePay.js new file mode 100644 index 000000000..b8e82dd38 --- /dev/null +++ b/src/js/icons/GooglePay.js @@ -0,0 +1,35 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const GooglePay = forwardRef((props, ref) => ( + + + + + + + + + + + + + +)); + +GooglePay.displayName = 'GooglePay'; + +export { GooglePay }; diff --git a/src/js/icons/GooglePlay.js b/src/js/icons/GooglePlay.js index b561f915f..baf1de43c 100644 --- a/src/js/icons/GooglePlay.js +++ b/src/js/icons/GooglePlay.js @@ -4,7 +4,22 @@ import { StyledIcon } from '../StyledIcon'; const GooglePlay = forwardRef((props, ref) => ( - + + + + )); diff --git a/src/js/icons/Kubernetes.js b/src/js/icons/Kubernetes.js new file mode 100644 index 000000000..a575a2c7f --- /dev/null +++ b/src/js/icons/Kubernetes.js @@ -0,0 +1,23 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const Kubernetes = forwardRef((props, ref) => ( + + + + + + + + + + +)); + +Kubernetes.displayName = 'Kubernetes'; + +export { Kubernetes }; diff --git a/src/js/icons/Mail.js b/src/js/icons/Mail.js index 4a03189e2..3ab4ebd02 100644 --- a/src/js/icons/Mail.js +++ b/src/js/icons/Mail.js @@ -4,7 +4,12 @@ import { StyledIcon } from '../StyledIcon'; const Mail = forwardRef((props, ref) => ( - + )); diff --git a/src/js/icons/Medium.js b/src/js/icons/Medium.js index 640c2cda5..9436ce0b3 100644 --- a/src/js/icons/Medium.js +++ b/src/js/icons/Medium.js @@ -4,7 +4,10 @@ import { StyledIcon } from '../StyledIcon'; const Medium = forwardRef((props, ref) => ( - + )); diff --git a/src/js/icons/Meta.js b/src/js/icons/Meta.js new file mode 100644 index 000000000..3b4d0637f --- /dev/null +++ b/src/js/icons/Meta.js @@ -0,0 +1,16 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const Meta = forwardRef((props, ref) => ( + + + +)); + +Meta.displayName = 'Meta'; + +export { Meta }; diff --git a/src/js/icons/SamsungPay.js b/src/js/icons/SamsungPay.js new file mode 100644 index 000000000..0abaee3fc --- /dev/null +++ b/src/js/icons/SamsungPay.js @@ -0,0 +1,25 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const SamsungPay = forwardRef((props, ref) => ( + + + + + + + + + + +)); + +SamsungPay.displayName = 'SamsungPay'; + +export { SamsungPay }; diff --git a/src/js/icons/Soundcloud.js b/src/js/icons/Soundcloud.js index c8357340a..b7ad62212 100644 --- a/src/js/icons/Soundcloud.js +++ b/src/js/icons/Soundcloud.js @@ -4,7 +4,23 @@ import { StyledIcon } from '../StyledIcon'; const Soundcloud = forwardRef((props, ref) => ( - + + + + + + + )); diff --git a/src/js/icons/Spotify.js b/src/js/icons/Spotify.js index 7a6982c1a..0d9356b61 100644 --- a/src/js/icons/Spotify.js +++ b/src/js/icons/Spotify.js @@ -4,7 +4,19 @@ import { StyledIcon } from '../StyledIcon'; const Spotify = forwardRef((props, ref) => ( - + + + + + + + + )); diff --git a/src/js/icons/StackOverflow.js b/src/js/icons/StackOverflow.js index 7a7ad9b52..c16395072 100644 --- a/src/js/icons/StackOverflow.js +++ b/src/js/icons/StackOverflow.js @@ -3,8 +3,21 @@ import React, { forwardRef } from 'react'; import { StyledIcon } from '../StyledIcon'; const StackOverflow = forwardRef((props, ref) => ( - - + + + )); diff --git a/src/js/icons/Threads.js b/src/js/icons/Threads.js new file mode 100644 index 000000000..6070963da --- /dev/null +++ b/src/js/icons/Threads.js @@ -0,0 +1,16 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const Threads = forwardRef((props, ref) => ( + + + +)); + +Threads.displayName = 'Threads'; + +export { Threads }; diff --git a/src/js/icons/Twitch.js b/src/js/icons/Twitch.js new file mode 100644 index 000000000..438396d28 --- /dev/null +++ b/src/js/icons/Twitch.js @@ -0,0 +1,18 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const Twitch = forwardRef((props, ref) => ( + + + +)); + +Twitch.displayName = 'Twitch'; + +export { Twitch }; diff --git a/src/js/icons/Venmo.js b/src/js/icons/Venmo.js new file mode 100644 index 000000000..71b38e9d3 --- /dev/null +++ b/src/js/icons/Venmo.js @@ -0,0 +1,25 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const Venmo = forwardRef((props, ref) => ( + + + + + + + + + + +)); + +Venmo.displayName = 'Venmo'; + +export { Venmo }; diff --git a/src/js/icons/WeChat.js b/src/js/icons/WeChat.js new file mode 100644 index 000000000..37b0b700e --- /dev/null +++ b/src/js/icons/WeChat.js @@ -0,0 +1,18 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const WeChat = forwardRef((props, ref) => ( + + + +)); + +WeChat.displayName = 'WeChat'; + +export { WeChat }; diff --git a/src/js/icons/WhatsApp.js b/src/js/icons/WhatsApp.js new file mode 100644 index 000000000..d3601f993 --- /dev/null +++ b/src/js/icons/WhatsApp.js @@ -0,0 +1,23 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const WhatsApp = forwardRef((props, ref) => ( + + + + + + + + + + +)); + +WhatsApp.displayName = 'WhatsApp'; + +export { WhatsApp }; diff --git a/src/js/icons/X.js b/src/js/icons/X.js new file mode 100644 index 000000000..89a8fd26b --- /dev/null +++ b/src/js/icons/X.js @@ -0,0 +1,16 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const X = forwardRef((props, ref) => ( + + + +)); + +X.displayName = 'X'; + +export { X }; diff --git a/src/js/icons/Xing.js b/src/js/icons/Xing.js new file mode 100644 index 000000000..d941037de --- /dev/null +++ b/src/js/icons/Xing.js @@ -0,0 +1,27 @@ +import React, { forwardRef } from 'react'; + +import { StyledIcon } from '../StyledIcon'; + +const Xing = forwardRef((props, ref) => ( + + + + + + + + + + + +)); + +Xing.displayName = 'Xing'; + +export { Xing }; diff --git a/src/js/icons/index.d.ts b/src/js/icons/index.d.ts index 70a5fdb10..633c82472 100644 --- a/src/js/icons/index.d.ts +++ b/src/js/icons/index.d.ts @@ -17,6 +17,7 @@ export declare const Actions: Icon; export declare const Ad: Icon; export declare const AddCircle: Icon; export declare const Add: Icon; +export declare const AdobeCreativeCloud: Icon; export declare const Aed: Icon; export declare const Aggregate: Icon; export declare const AidOption: Icon; @@ -31,6 +32,8 @@ export declare const Android: Icon; export declare const Announce: Icon; export declare const AppleAppStore: Icon; export declare const Apple: Icon; +export declare const AppleMusic: Icon; +export declare const ApplePodcasts: Icon; export declare const AppsRounded: Icon; export declare const Apps: Icon; export declare const Archive: Icon; @@ -273,6 +276,7 @@ export declare const Gift: Icon; export declare const Github: Icon; export declare const Globe: Icon; export declare const Golang: Icon; +export declare const GooglePay: Icon; export declare const GooglePlay: Icon; export declare const GooglePlus: Icon; export declare const GoogleWallet: Icon; @@ -323,6 +327,7 @@ export declare const Java: Icon; export declare const Js: Icon; export declare const Key: Icon; export declare const Keyboard: Icon; +export declare const Kubernetes: Icon; export declare const Language: Icon; export declare const Lastfm: Icon; export declare const Launch: Icon; @@ -359,6 +364,7 @@ export declare const Mastercard: Icon; export declare const Medium: Icon; export declare const Memory: Icon; export declare const Menu: Icon; +export declare const Meta: Icon; export declare const Microfocus: Icon; export declare const Microphone: Icon; export declare const Money: Icon; @@ -450,6 +456,7 @@ export declare const RotateRight: Icon; export declare const Rss: Icon; export declare const Run: Icon; export declare const SafariOption: Icon; +export declare const SamsungPay: Icon; export declare const Sans: Icon; export declare const Satellite: Icon; export declare const Save: Icon; @@ -553,6 +560,7 @@ export declare const TextAlignFull: Icon; export declare const TextAlignLeft: Icon; export declare const TextAlignRight: Icon; export declare const TextWrap: Icon; +export declare const Threads: Icon; export declare const Threats: Icon; export declare const ThreeDffects: Icon; export declare const ThreeD: Icon; @@ -576,6 +584,7 @@ export declare const Troubleshoot: Icon; export declare const Tty: Icon; export declare const Tumblr: Icon; export declare const Turbolinux: Icon; +export declare const Twitch: Icon; export declare const Twitter: Icon; export declare const Ubuntu: Icon; export declare const Underline: Icon; @@ -602,6 +611,7 @@ export declare const UserWorker: Icon; export declare const User: Icon; export declare const Validate: Icon; export declare const Vend: Icon; +export declare const Venmo: Icon; export declare const Video: Icon; export declare const View: Icon; export declare const Vimeo: Icon; @@ -617,6 +627,8 @@ export declare const Volume: Icon; export declare const Vulnerability: Icon; export declare const Waypoint: Icon; export declare const Webcam: Icon; +export declare const WeChat: Icon; +export declare const WhatsApp: Icon; export declare const WheelchairActive: Icon; export declare const Wheelchair: Icon; export declare const WifiLow: Icon; @@ -627,6 +639,8 @@ export declare const WindowsLegacy: Icon; export declare const Windows: Icon; export declare const Wordpress: Icon; export declare const Workshop: Icon; +export declare const X: Icon; +export declare const Xing: Icon; export declare const Yoga: Icon; export declare const Youtube: Icon; export declare const ZoomIn: Icon; diff --git a/src/js/icons/index.js b/src/js/icons/index.js index 2cf35e7d8..441b5c052 100644 --- a/src/js/icons/index.js +++ b/src/js/icons/index.js @@ -5,6 +5,7 @@ export * from './Actions'; export * from './Ad'; export * from './AddCircle'; export * from './Add'; +export * from './AdobeCreativeCloud'; export * from './Aed'; export * from './Aggregate'; export * from './AidOption'; @@ -18,6 +19,8 @@ export * from './Anchor'; export * from './Android'; export * from './Announce'; export * from './AppleAppStore'; +export * from './AppleMusic'; +export * from './ApplePodcasts'; export * from './Apple'; export * from './AppsRounded'; export * from './Apps'; @@ -261,6 +264,7 @@ export * from './Gift'; export * from './Github'; export * from './Globe'; export * from './Golang'; +export * from './GooglePay'; export * from './GooglePlay'; export * from './GooglePlus'; export * from './GoogleWallet'; @@ -311,6 +315,7 @@ export * from './Java'; export * from './Js'; export * from './Key'; export * from './Keyboard'; +export * from './Kubernetes'; export * from './Language'; export * from './Lastfm'; export * from './Launch'; @@ -347,6 +352,7 @@ export * from './Mastercard'; export * from './Medium'; export * from './Memory'; export * from './Menu'; +export * from './Meta'; export * from './Microfocus'; export * from './Microphone'; export * from './Money'; @@ -438,6 +444,7 @@ export * from './RotateRight'; export * from './Rss'; export * from './Run'; export * from './SafariOption'; +export * from './SamsungPay'; export * from './Sans'; export * from './Satellite'; export * from './Save'; @@ -541,6 +548,7 @@ export * from './TextAlignFull'; export * from './TextAlignLeft'; export * from './TextAlignRight'; export * from './TextWrap'; +export * from './Threads'; export * from './Threats'; export * from './ThreeDffects'; export * from './ThreeD'; @@ -564,6 +572,7 @@ export * from './Troubleshoot'; export * from './Tty'; export * from './Tumblr'; export * from './Turbolinux'; +export * from './Twitch'; export * from './Twitter'; export * from './Ubuntu'; export * from './Underline'; @@ -590,6 +599,7 @@ export * from './UserWorker'; export * from './User'; export * from './Validate'; export * from './Vend'; +export * from './Venmo'; export * from './Video'; export * from './View'; export * from './Vimeo'; @@ -605,6 +615,8 @@ export * from './Volume'; export * from './Vulnerability'; export * from './Waypoint'; export * from './Webcam'; +export * from './WeChat'; +export * from './WhatsApp'; export * from './WheelchairActive'; export * from './Wheelchair'; export * from './WifiLow'; @@ -615,6 +627,8 @@ export * from './WindowsLegacy'; export * from './Windows'; export * from './Wordpress'; export * from './Workshop'; +export * from './X'; +export * from './Xing'; export * from './Yoga'; export * from './Youtube'; export * from './ZoomIn'; From 1e749752c934104ddca0d8d708c301d3e51cee2c Mon Sep 17 00:00:00 2001 From: Taylor Seamans Date: Thu, 31 Aug 2023 10:00:42 -0700 Subject: [PATCH 2/5] Dont modify social icons --- .../__tests__/__snapshots__/Icon-test.js.snap | 268 +++++------------- src/js/icons/Edge.js | 63 +--- src/js/icons/Facebook.js | 16 +- src/js/icons/Figma.js | 24 +- src/js/icons/GooglePlay.js | 20 +- src/js/icons/Mail.js | 3 +- src/js/icons/Medium.js | 4 +- src/js/icons/Soundcloud.js | 18 +- src/js/icons/Spotify.js | 18 +- src/js/icons/StackOverflow.js | 10 +- 10 files changed, 100 insertions(+), 344 deletions(-) diff --git a/src/js/__tests__/__snapshots__/Icon-test.js.snap b/src/js/__tests__/__snapshots__/Icon-test.js.snap index df76ddb68..dad7e8864 100644 --- a/src/js/__tests__/__snapshots__/Icon-test.js.snap +++ b/src/js/__tests__/__snapshots__/Icon-test.js.snap @@ -9983,104 +9983,11 @@ exports[`Icon all icons 200`] = ` class="c0" viewBox="0 0 24 24" > - - - - - - - - - - - - - - - - - - - - - - - - - - - - + `; @@ -10672,24 +10579,11 @@ exports[`Icon all icons 212`] = ` class="c0" viewBox="0 0 24 24" > - - - - - - - - + `; @@ -11004,26 +10898,34 @@ exports[`Icon all icons 218`] = ` class="c0" viewBox="0 0 24 24" > - - - - - + + + + + + + `; @@ -13547,22 +13449,19 @@ exports[`Icon all icons 269`] = ` class="c0" viewBox="0 0 24 24" > - - - - + + + + `; @@ -17406,8 +17305,7 @@ exports[`Icon all icons 347`] = ` viewBox="0 0 24 24" > @@ -17711,8 +17609,8 @@ exports[`Icon all icons 353`] = ` viewBox="0 0 24 24" > `; @@ -24368,27 +24266,10 @@ exports[`Icon all icons 488`] = ` viewBox="0 0 24 24" > - - - - - - `; @@ -24627,26 +24508,11 @@ exports[`Icon all icons 493`] = ` class="c0" viewBox="0 0 24 24" > - - - - - - - - + `; @@ -24739,13 +24605,9 @@ exports[`Icon all icons 495`] = ` viewBox="0 0 24 24" > - `; diff --git a/src/js/icons/Edge.js b/src/js/icons/Edge.js index e48d2ec6b..f8db79396 100644 --- a/src/js/icons/Edge.js +++ b/src/js/icons/Edge.js @@ -4,64 +4,11 @@ import { StyledIcon } from '../StyledIcon'; const Edge = forwardRef((props, ref) => ( - - - - - - - - - - - - - - - - - - - - - - - - - - - - + )); diff --git a/src/js/icons/Facebook.js b/src/js/icons/Facebook.js index 12e488a95..02e335928 100644 --- a/src/js/icons/Facebook.js +++ b/src/js/icons/Facebook.js @@ -4,17 +4,11 @@ import { StyledIcon } from '../StyledIcon'; const Facebook = forwardRef((props, ref) => ( - - - - - - - - + )); diff --git a/src/js/icons/Figma.js b/src/js/icons/Figma.js index d52e582ef..35f568c27 100644 --- a/src/js/icons/Figma.js +++ b/src/js/icons/Figma.js @@ -4,23 +4,13 @@ import { StyledIcon } from '../StyledIcon'; const Figma = forwardRef((props, ref) => ( - - - - - + + + + + + + )); diff --git a/src/js/icons/GooglePlay.js b/src/js/icons/GooglePlay.js index baf1de43c..0d65d8469 100644 --- a/src/js/icons/GooglePlay.js +++ b/src/js/icons/GooglePlay.js @@ -4,22 +4,10 @@ import { StyledIcon } from '../StyledIcon'; const GooglePlay = forwardRef((props, ref) => ( - - - - + + + + )); diff --git a/src/js/icons/Mail.js b/src/js/icons/Mail.js index 3ab4ebd02..f319f0ce0 100644 --- a/src/js/icons/Mail.js +++ b/src/js/icons/Mail.js @@ -7,8 +7,7 @@ const Mail = forwardRef((props, ref) => ( )); diff --git a/src/js/icons/Medium.js b/src/js/icons/Medium.js index 9436ce0b3..20c79b963 100644 --- a/src/js/icons/Medium.js +++ b/src/js/icons/Medium.js @@ -5,8 +5,8 @@ import { StyledIcon } from '../StyledIcon'; const Medium = forwardRef((props, ref) => ( )); diff --git a/src/js/icons/Soundcloud.js b/src/js/icons/Soundcloud.js index b7ad62212..f3a17ce4b 100644 --- a/src/js/icons/Soundcloud.js +++ b/src/js/icons/Soundcloud.js @@ -5,22 +5,10 @@ import { StyledIcon } from '../StyledIcon'; const Soundcloud = forwardRef((props, ref) => ( - - - - - - )); diff --git a/src/js/icons/Spotify.js b/src/js/icons/Spotify.js index 0d9356b61..ac46d5f84 100644 --- a/src/js/icons/Spotify.js +++ b/src/js/icons/Spotify.js @@ -4,19 +4,11 @@ import { StyledIcon } from '../StyledIcon'; const Spotify = forwardRef((props, ref) => ( - - - - - - - - + )); diff --git a/src/js/icons/StackOverflow.js b/src/js/icons/StackOverflow.js index c16395072..5869e7178 100644 --- a/src/js/icons/StackOverflow.js +++ b/src/js/icons/StackOverflow.js @@ -10,13 +10,9 @@ const StackOverflow = forwardRef((props, ref) => ( {...props} > - )); From 3b1efc96f7d40834ccc0f8b09353589ca37df162 Mon Sep 17 00:00:00 2001 From: Taylor Seamans Date: Thu, 31 Aug 2023 10:06:41 -0700 Subject: [PATCH 3/5] Dont adjust svg for social icons --- public/img/edge.svg | 31 ++----------------------------- public/img/facebook.svg | 11 ++--------- public/img/figma.svg | 14 ++++++++------ public/img/google-play.svg | 11 ++++++----- public/img/mail.svg | 4 ++-- public/img/medium.svg | 4 ++-- public/img/soundcloud.svg | 10 ++-------- public/img/spotify.svg | 9 +-------- public/img/stack-overflow.svg | 7 +++---- 9 files changed, 28 insertions(+), 73 deletions(-) diff --git a/public/img/edge.svg b/public/img/edge.svg index e6cf88e76..62dd735b4 100644 --- a/public/img/edge.svg +++ b/public/img/edge.svg @@ -1,30 +1,3 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + \ No newline at end of file diff --git a/public/img/facebook.svg b/public/img/facebook.svg index b598179e9..1f0eef7a0 100644 --- a/public/img/facebook.svg +++ b/public/img/facebook.svg @@ -1,10 +1,3 @@ - - - - - - - - - + + \ No newline at end of file diff --git a/public/img/figma.svg b/public/img/figma.svg index 99130c4cc..7749c4b0d 100644 --- a/public/img/figma.svg +++ b/public/img/figma.svg @@ -1,7 +1,9 @@ - - - - - - + + + + + + + + \ No newline at end of file diff --git a/public/img/google-play.svg b/public/img/google-play.svg index 3c0b47add..0d9424f14 100644 --- a/public/img/google-play.svg +++ b/public/img/google-play.svg @@ -1,6 +1,7 @@ - - - - - + + + + + + \ No newline at end of file diff --git a/public/img/mail.svg b/public/img/mail.svg index 171a174d6..7d938aca4 100644 --- a/public/img/mail.svg +++ b/public/img/mail.svg @@ -1,3 +1,3 @@ - - + + \ No newline at end of file diff --git a/public/img/medium.svg b/public/img/medium.svg index c4746641f..55ac62a6f 100644 --- a/public/img/medium.svg +++ b/public/img/medium.svg @@ -1,3 +1,3 @@ - - + + \ No newline at end of file diff --git a/public/img/soundcloud.svg b/public/img/soundcloud.svg index 154429ce6..ab3e1c923 100644 --- a/public/img/soundcloud.svg +++ b/public/img/soundcloud.svg @@ -1,9 +1,3 @@ - - - - - - - - + + \ No newline at end of file diff --git a/public/img/spotify.svg b/public/img/spotify.svg index 31f2c0c3a..55444095b 100644 --- a/public/img/spotify.svg +++ b/public/img/spotify.svg @@ -1,10 +1,3 @@ - - - - - - - - + diff --git a/public/img/stack-overflow.svg b/public/img/stack-overflow.svg index 2ca4638f6..4a2f6d79b 100644 --- a/public/img/stack-overflow.svg +++ b/public/img/stack-overflow.svg @@ -1,4 +1,3 @@ - - - - + + + \ No newline at end of file From 147bb954f8882a6b395dbdd2dad32f7b7049707a Mon Sep 17 00:00:00 2001 From: Taylor Seamans Date: Thu, 31 Aug 2023 10:10:08 -0700 Subject: [PATCH 4/5] Leave Figma svg untouched --- public/img/figma.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/img/figma.svg b/public/img/figma.svg index 7749c4b0d..0c4879d3b 100644 --- a/public/img/figma.svg +++ b/public/img/figma.svg @@ -6,4 +6,4 @@ - \ No newline at end of file + From 673c58bb4b512dd38783c4530f05afaab8107cfd Mon Sep 17 00:00:00 2001 From: Taylor Seamans Date: Thu, 31 Aug 2023 10:13:14 -0700 Subject: [PATCH 5/5] Remove modifications to icons --- public/img/edge.svg | 2 +- public/img/facebook.svg | 2 +- public/img/google-play.svg | 2 +- public/img/mail.svg | 2 +- public/img/medium.svg | 2 +- public/img/soundcloud.svg | 2 +- public/img/stack-overflow.svg | 2 +- src/js/icons/Edge.js | 6 +----- src/js/icons/Facebook.js | 6 +----- src/js/icons/Figma.js | 8 +------- src/js/icons/GooglePlay.js | 5 +---- src/js/icons/Mail.js | 6 +----- src/js/icons/Medium.js | 5 +---- src/js/icons/Soundcloud.js | 6 +----- src/js/icons/Spotify.js | 6 +----- src/js/icons/StackOverflow.js | 13 ++----------- 16 files changed, 17 insertions(+), 58 deletions(-) diff --git a/public/img/edge.svg b/public/img/edge.svg index 62dd735b4..7d097cf86 100644 --- a/public/img/edge.svg +++ b/public/img/edge.svg @@ -1,3 +1,3 @@ - \ No newline at end of file + diff --git a/public/img/facebook.svg b/public/img/facebook.svg index 1f0eef7a0..847ae0489 100644 --- a/public/img/facebook.svg +++ b/public/img/facebook.svg @@ -1,3 +1,3 @@ - \ No newline at end of file + diff --git a/public/img/google-play.svg b/public/img/google-play.svg index 0d9424f14..cfbbd5b75 100644 --- a/public/img/google-play.svg +++ b/public/img/google-play.svg @@ -4,4 +4,4 @@ - \ No newline at end of file + diff --git a/public/img/mail.svg b/public/img/mail.svg index 7d938aca4..ac61eae81 100644 --- a/public/img/mail.svg +++ b/public/img/mail.svg @@ -1,3 +1,3 @@ - \ No newline at end of file + diff --git a/public/img/medium.svg b/public/img/medium.svg index 55ac62a6f..4a13acd56 100644 --- a/public/img/medium.svg +++ b/public/img/medium.svg @@ -1,3 +1,3 @@ - \ No newline at end of file + diff --git a/public/img/soundcloud.svg b/public/img/soundcloud.svg index ab3e1c923..91d72b412 100644 --- a/public/img/soundcloud.svg +++ b/public/img/soundcloud.svg @@ -1,3 +1,3 @@ - \ No newline at end of file + diff --git a/public/img/stack-overflow.svg b/public/img/stack-overflow.svg index 4a2f6d79b..d82484c5c 100644 --- a/public/img/stack-overflow.svg +++ b/public/img/stack-overflow.svg @@ -1,3 +1,3 @@ - \ No newline at end of file + diff --git a/src/js/icons/Edge.js b/src/js/icons/Edge.js index f8db79396..dd06d8dec 100644 --- a/src/js/icons/Edge.js +++ b/src/js/icons/Edge.js @@ -4,11 +4,7 @@ import { StyledIcon } from '../StyledIcon'; const Edge = forwardRef((props, ref) => ( - + )); diff --git a/src/js/icons/Facebook.js b/src/js/icons/Facebook.js index 02e335928..c3dfea7b3 100644 --- a/src/js/icons/Facebook.js +++ b/src/js/icons/Facebook.js @@ -4,11 +4,7 @@ import { StyledIcon } from '../StyledIcon'; const Facebook = forwardRef((props, ref) => ( - + )); diff --git a/src/js/icons/Figma.js b/src/js/icons/Figma.js index 35f568c27..3ba4c517c 100644 --- a/src/js/icons/Figma.js +++ b/src/js/icons/Figma.js @@ -4,13 +4,7 @@ import { StyledIcon } from '../StyledIcon'; const Figma = forwardRef((props, ref) => ( - - - - - - - + )); diff --git a/src/js/icons/GooglePlay.js b/src/js/icons/GooglePlay.js index 0d65d8469..b561f915f 100644 --- a/src/js/icons/GooglePlay.js +++ b/src/js/icons/GooglePlay.js @@ -4,10 +4,7 @@ import { StyledIcon } from '../StyledIcon'; const GooglePlay = forwardRef((props, ref) => ( - - - - + )); diff --git a/src/js/icons/Mail.js b/src/js/icons/Mail.js index f319f0ce0..4a03189e2 100644 --- a/src/js/icons/Mail.js +++ b/src/js/icons/Mail.js @@ -4,11 +4,7 @@ import { StyledIcon } from '../StyledIcon'; const Mail = forwardRef((props, ref) => ( - + )); diff --git a/src/js/icons/Medium.js b/src/js/icons/Medium.js index 20c79b963..640c2cda5 100644 --- a/src/js/icons/Medium.js +++ b/src/js/icons/Medium.js @@ -4,10 +4,7 @@ import { StyledIcon } from '../StyledIcon'; const Medium = forwardRef((props, ref) => ( - + )); diff --git a/src/js/icons/Soundcloud.js b/src/js/icons/Soundcloud.js index f3a17ce4b..c8357340a 100644 --- a/src/js/icons/Soundcloud.js +++ b/src/js/icons/Soundcloud.js @@ -4,11 +4,7 @@ import { StyledIcon } from '../StyledIcon'; const Soundcloud = forwardRef((props, ref) => ( - + )); diff --git a/src/js/icons/Spotify.js b/src/js/icons/Spotify.js index ac46d5f84..7a6982c1a 100644 --- a/src/js/icons/Spotify.js +++ b/src/js/icons/Spotify.js @@ -4,11 +4,7 @@ import { StyledIcon } from '../StyledIcon'; const Spotify = forwardRef((props, ref) => ( - + )); diff --git a/src/js/icons/StackOverflow.js b/src/js/icons/StackOverflow.js index 5869e7178..7a7ad9b52 100644 --- a/src/js/icons/StackOverflow.js +++ b/src/js/icons/StackOverflow.js @@ -3,17 +3,8 @@ import React, { forwardRef } from 'react'; import { StyledIcon } from '../StyledIcon'; const StackOverflow = forwardRef((props, ref) => ( - - + + ));