@talismn/icons 0.0.0-pr1222-20240111132120 → 0.0.0-pr1222-20240112040840
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -1
- package/dist/declarations/src/index.d.ts +3 -1
- package/dist/talismn-icons.cjs.dev.js +287 -105
- package/dist/talismn-icons.cjs.prod.js +287 -105
- package/dist/talismn-icons.esm.js +285 -105
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# @talismn/icons
|
2
2
|
|
3
|
-
## 0.0.0-pr1222-
|
3
|
+
## 0.0.0-pr1222-20240112040840
|
4
4
|
|
5
5
|
### Minor Changes
|
6
6
|
|
@@ -16,4 +16,5 @@
|
|
16
16
|
- c4d5967: bump typescript version
|
17
17
|
- 60746a1: feat: added @talismn/icons package
|
18
18
|
- 620b7eb: Dependency updates
|
19
|
+
- 4a56632: feat: added stars icon
|
19
20
|
- e724c66: Added icons
|
@@ -5,6 +5,7 @@ export { ReactComponent as CommentIcon } from "./icons/comment.svg";
|
|
5
5
|
export { ReactComponent as CursorClickIcon } from "./icons/cursor-click.svg";
|
6
6
|
export { ReactComponent as CustomTokenGenericIcon } from "./icons/custom-token-generic.svg";
|
7
7
|
export { ReactComponent as DcentIcon } from "./icons/dcent.svg";
|
8
|
+
export { ReactComponent as DepositIcon } from "./icons/deposit.svg";
|
8
9
|
export { ReactComponent as DownloadAlertIcon } from "./icons/download-alert.svg";
|
9
10
|
export { ReactComponent as DragIcon } from "./icons/drag.svg";
|
10
11
|
export { ReactComponent as ExtensionButtonIcon } from "./icons/extension-button.svg";
|
@@ -17,15 +18,16 @@ export { ReactComponent as NetworkUsageDecreasingIcon } from "./icons/network-us
|
|
17
18
|
export { ReactComponent as NetworkUsageHighIcon } from "./icons/network-usage-high.svg";
|
18
19
|
export { ReactComponent as NetworkUsageIdleIcon } from "./icons/network-usage-idle.svg";
|
19
20
|
export { ReactComponent as NetworkUsageIncreasingIcon } from "./icons/network-usage-increasing.svg";
|
20
|
-
export { ReactComponent as PaperPlaneIcon } from "./icons/paper-plane.svg";
|
21
21
|
export { ReactComponent as PinIcon } from "./icons/pin.svg";
|
22
22
|
export { ReactComponent as PolkadotVaultIcon } from "./icons/polkadot-vault.svg";
|
23
23
|
export { ReactComponent as PopupIcon } from "./icons/popup.svg";
|
24
24
|
export { ReactComponent as RocketIcon } from "./icons/rocket.svg";
|
25
25
|
export { ReactComponent as SecretIcon } from "./icons/secret.svg";
|
26
|
+
export { ReactComponent as StarsIcon } from "./icons/stars.svg";
|
26
27
|
export { ReactComponent as SwapIcon } from "./icons/swap.svg";
|
27
28
|
export { ReactComponent as TableIcon } from "./icons/table.svg";
|
28
29
|
export { ReactComponent as TalismanHandIcon } from "./icons/talisman-hand.svg";
|
30
|
+
export { ReactComponent as TryItIcon } from "./icons/try-it.svg";
|
29
31
|
export { ReactComponent as UsbIcon } from "./icons/usb.svg";
|
30
32
|
export { ReactComponent as UserRightIcon } from "./icons/user-right.svg";
|
31
33
|
export { ReactComponent as VoteIcon } from "./icons/vote.svg";
|