elementa-icons 1.41.0 → 1.42.0
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/dist/icons/shapes-symbols-punctuation/Shapes.js +14 -0
- package/dist/icons/shapes-symbols-punctuation/TrackLine.js +14 -0
- package/dist/icons/shapes-symbols-punctuation/index.js +3 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -0
- package/dist/types/icons/shapes-symbols-punctuation/Shapes.d.ts +6 -0
- package/dist/types/icons/shapes-symbols-punctuation/TrackLine.d.ts +6 -0
- package/dist/types/icons/shapes-symbols-punctuation/index.d.ts +3 -0
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -136,6 +136,7 @@ import { Delete, Refresh } from '@/src/icons/saving-data-management';
|
|
|
136
136
|
import { Fingerprint, Logout } from '@/src/icons/security-privacy';
|
|
137
137
|
// !SECTION: Security & Privacy
|
|
138
138
|
// SECTION: Shapes, Symbols & Punctuation
|
|
139
|
+
import { Shapes, TrackLine } from '@/src/icons/shapes-symbols-punctuation/';
|
|
139
140
|
// !SECTION: Shapes, Symbols & Punctuation
|
|
140
141
|
// SECTION: Shopping
|
|
141
142
|
import { Discount, ShoppingCart } from '@/src/icons/shopping/';
|
|
@@ -315,6 +316,7 @@ export { Delete, Refresh };
|
|
|
315
316
|
export { Fingerprint, Logout };
|
|
316
317
|
// !SECTION: Security & Privacy
|
|
317
318
|
// SECTION: Shapes, Symbols & Punctuation
|
|
319
|
+
export { Shapes, TrackLine };
|
|
318
320
|
// !SECTION: Shapes, Symbols & Punctuation
|
|
319
321
|
// SECTION: Shopping
|
|
320
322
|
export { Discount, ShoppingCart };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ import { Fire } from '@/src/icons/nature-environment';
|
|
|
32
32
|
import { Flag } from '@/src/icons/political';
|
|
33
33
|
import { Delete, Refresh } from '@/src/icons/saving-data-management';
|
|
34
34
|
import { Fingerprint, Logout } from '@/src/icons/security-privacy';
|
|
35
|
+
import { Shapes, TrackLine } from '@/src/icons/shapes-symbols-punctuation/';
|
|
35
36
|
import { Discount, ShoppingCart } from '@/src/icons/shopping/';
|
|
36
37
|
import { AddFriend, AddFriends } from '@/src/icons/social-people';
|
|
37
38
|
import { Basketball, Dart } from '@/src/icons/sports';
|
|
@@ -73,6 +74,7 @@ export { Fire };
|
|
|
73
74
|
export { Flag };
|
|
74
75
|
export { Delete, Refresh };
|
|
75
76
|
export { Fingerprint, Logout };
|
|
77
|
+
export { Shapes, TrackLine };
|
|
76
78
|
export { Discount, ShoppingCart };
|
|
77
79
|
export { AddFriend, AddFriends };
|
|
78
80
|
export { Basketball, Dart };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -175,6 +175,7 @@ import { Delete, Refresh } from '@/src/icons/saving-data-management';
|
|
|
175
175
|
import { Fingerprint, Logout } from '@/src/icons/security-privacy';
|
|
176
176
|
// !SECTION: Security & Privacy
|
|
177
177
|
// SECTION: Shapes, Symbols & Punctuation
|
|
178
|
+
import { Shapes, TrackLine } from '@/src/icons/shapes-symbols-punctuation/';
|
|
178
179
|
// !SECTION: Shapes, Symbols & Punctuation
|
|
179
180
|
// SECTION: Shopping
|
|
180
181
|
import { Discount, ShoppingCart } from '@/src/icons/shopping/';
|
|
@@ -388,6 +389,7 @@ export { Delete, Refresh };
|
|
|
388
389
|
export { Fingerprint, Logout };
|
|
389
390
|
// !SECTION: Security & Privacy
|
|
390
391
|
// SECTION: Shapes, Symbols & Punctuation
|
|
392
|
+
export { Shapes, TrackLine };
|
|
391
393
|
// !SECTION: Shapes, Symbols & Punctuation
|
|
392
394
|
// SECTION: Shopping
|
|
393
395
|
export { Discount, ShoppingCart };
|