diff --git a/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap b/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap index c1350a61..f6391460 100644 --- a/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap +++ b/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap @@ -334,6 +334,7 @@ exports[`generate > \`/src/components/index.ts\` file > has exports that match t "ChartAreaIcon", "ChartDataIcon", "ChartLinesIcon", + "ChatInfoIcon", "CheckCircleIcon", "CheckSmallIcon", "CheckIcon", @@ -357,10 +358,12 @@ exports[`generate > \`/src/components/index.ts\` file > has exports that match t "CodeblockIcon", "CogModeIcon", "CogIcon", + "CoinIcon", "CollapsePanelIcon", "CollapseIcon", "ColorsIcon", "ConnectionsIcon", + "ContactSupportIcon", "CopyIcon", "DangerCircleIcon", "DangerIcon", @@ -404,6 +407,7 @@ exports[`generate > \`/src/components/index.ts\` file > has exports that match t "GatewayIcon", "GraduationIcon", "GridIcon", + "GroupsIcon", "HelpOutlineIcon", "HelpIcon", "HistoryIcon", @@ -428,6 +432,7 @@ exports[`generate > \`/src/components/index.ts\` file > has exports that match t "ListIcon", "LocationIcon", "LockIcon", + "LogoutIcon", "MailSendIcon", "MailIcon", "MarkIcon", @@ -483,6 +488,7 @@ exports[`generate > \`/src/components/index.ts\` file > has exports that match t "SuperscriptIcon", "SupportIcon", "SwapSortIcon", + "SwapIcon", "TableColumnsIcon", "TableRowsIcon", "TableIcon", @@ -496,6 +502,7 @@ exports[`generate > \`/src/components/index.ts\` file > has exports that match t "ThumbUpIcon", "TieredIcon", "ToggleOnIcon", + "TourIcon", "TrafficIcon", "TransformationIcon", "TrashIcon", @@ -509,6 +516,7 @@ exports[`generate > \`/src/components/index.ts\` file > has exports that match t "UnfoldMoreIcon", "UploadIcon", "UsageIcon", + "VerifiedIcon", "VisibilityOffIcon", "VisibilityIcon", "VitalsIcon", diff --git a/src/tests/__snapshots__/ChatInfoIcon.html b/src/tests/__snapshots__/ChatInfoIcon.html new file mode 100644 index 00000000..ba3fb781 --- /dev/null +++ b/src/tests/__snapshots__/ChatInfoIcon.html @@ -0,0 +1 @@ +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/CoinIcon.html b/src/tests/__snapshots__/CoinIcon.html new file mode 100644 index 00000000..4b707f33 --- /dev/null +++ b/src/tests/__snapshots__/CoinIcon.html @@ -0,0 +1 @@ +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/ContactSupportIcon.html b/src/tests/__snapshots__/ContactSupportIcon.html new file mode 100644 index 00000000..6827ff8f --- /dev/null +++ b/src/tests/__snapshots__/ContactSupportIcon.html @@ -0,0 +1 @@ +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/GroupsIcon.html b/src/tests/__snapshots__/GroupsIcon.html new file mode 100644 index 00000000..e09718dc --- /dev/null +++ b/src/tests/__snapshots__/GroupsIcon.html @@ -0,0 +1 @@ +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/LogoutIcon.html b/src/tests/__snapshots__/LogoutIcon.html new file mode 100644 index 00000000..3466d121 --- /dev/null +++ b/src/tests/__snapshots__/LogoutIcon.html @@ -0,0 +1 @@ +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/SwapIcon.html b/src/tests/__snapshots__/SwapIcon.html new file mode 100644 index 00000000..2089da53 --- /dev/null +++ b/src/tests/__snapshots__/SwapIcon.html @@ -0,0 +1 @@ +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/TourIcon.html b/src/tests/__snapshots__/TourIcon.html new file mode 100644 index 00000000..5f4f4377 --- /dev/null +++ b/src/tests/__snapshots__/TourIcon.html @@ -0,0 +1 @@ +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/VerifiedIcon.html b/src/tests/__snapshots__/VerifiedIcon.html new file mode 100644 index 00000000..f8953fba --- /dev/null +++ b/src/tests/__snapshots__/VerifiedIcon.html @@ -0,0 +1 @@ +My custom title \ No newline at end of file diff --git a/src/tests/__snapshots__/VerifiedOutlineIcon.html b/src/tests/__snapshots__/VerifiedOutlineIcon.html new file mode 100644 index 00000000..8e573c10 --- /dev/null +++ b/src/tests/__snapshots__/VerifiedOutlineIcon.html @@ -0,0 +1 @@ +My custom title \ No newline at end of file diff --git a/svg/solid/chat-info.svg b/svg/solid/chat-info.svg new file mode 100644 index 00000000..7b66a435 --- /dev/null +++ b/svg/solid/chat-info.svg @@ -0,0 +1,3 @@ + + + diff --git a/svg/solid/coin.svg b/svg/solid/coin.svg new file mode 100644 index 00000000..ff408f8a --- /dev/null +++ b/svg/solid/coin.svg @@ -0,0 +1,3 @@ + + + diff --git a/svg/solid/contact-support.svg b/svg/solid/contact-support.svg new file mode 100644 index 00000000..0ae47f02 --- /dev/null +++ b/svg/solid/contact-support.svg @@ -0,0 +1,3 @@ + + + diff --git a/svg/solid/groups.svg b/svg/solid/groups.svg new file mode 100644 index 00000000..73df4b9a --- /dev/null +++ b/svg/solid/groups.svg @@ -0,0 +1,3 @@ + + + diff --git a/svg/solid/logout.svg b/svg/solid/logout.svg new file mode 100644 index 00000000..262cd03c --- /dev/null +++ b/svg/solid/logout.svg @@ -0,0 +1,3 @@ + + + diff --git a/svg/solid/swap.svg b/svg/solid/swap.svg new file mode 100644 index 00000000..893cf147 --- /dev/null +++ b/svg/solid/swap.svg @@ -0,0 +1,3 @@ + + + diff --git a/svg/solid/tour.svg b/svg/solid/tour.svg new file mode 100644 index 00000000..12e0d778 --- /dev/null +++ b/svg/solid/tour.svg @@ -0,0 +1,3 @@ + + + diff --git a/svg/solid/verified.svg b/svg/solid/verified.svg new file mode 100644 index 00000000..25f2dfa6 --- /dev/null +++ b/svg/solid/verified.svg @@ -0,0 +1,3 @@ + + +