@talismn/icons 0.0.0-pr1480-20240612111115 → 0.0.0-pr1481-20240621073639
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 +4 -0
- package/dist/talismn-icons.cjs.dev.js +192 -124
- package/dist/talismn-icons.cjs.prod.js +192 -124
- package/dist/talismn-icons.esm.js +189 -125
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# @talismn/icons
|
2
2
|
|
3
|
-
## 0.0.0-
|
3
|
+
## 0.0.0-pr1481-20240621073639
|
4
4
|
|
5
5
|
### Minor Changes
|
6
6
|
|
@@ -17,6 +17,7 @@
|
|
17
17
|
- 91895a1: Add new icon
|
18
18
|
- c4d5967: bump typescript version
|
19
19
|
- 60746a1: feat: added @talismn/icons package
|
20
|
+
- f275b1e: feat: nfts
|
20
21
|
- 70bb357: Added new custom icon
|
21
22
|
- 620b7eb: Dependency updates
|
22
23
|
- 87a0474: qr code icon
|
@@ -31,6 +31,10 @@ export { ReactComponent as ShieldNotOkIcon } from "./icons/shield-nok.svg";
|
|
31
31
|
export { ReactComponent as ShieldOkIcon } from "./icons/shield-ok.svg";
|
32
32
|
export { ReactComponent as ShieldSuccessIcon } from "./icons/shield-success.svg";
|
33
33
|
export { ReactComponent as ShieldUnavailableIcon } from "./icons/shield-unavailable.svg";
|
34
|
+
export { ReactComponent as ToolbarFilterIcon } from "./icons/toolbar-filter.svg";
|
35
|
+
export { ReactComponent as ToolbarListIcon } from "./icons/toolbar-list.svg";
|
36
|
+
export { ReactComponent as ToolbarSortIcon } from "./icons/toolbar-sort.svg";
|
37
|
+
export { ReactComponent as ToolbarTilesIcon } from "./icons/toolbar-tiles.svg";
|
34
38
|
export { ReactComponent as ShieldUnknownIcon } from "./icons/shield-unknown.svg";
|
35
39
|
export { ReactComponent as ShieldZapIcon } from "./icons/shield-zap.svg";
|
36
40
|
export { ReactComponent as SignetIcon } from "./icons/signet.svg";
|