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/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 };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Shapes: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Shapes;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders a track line.
4
+ */
5
+ declare const TrackLine: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default TrackLine;
@@ -0,0 +1,3 @@
1
+ import Shapes from '@/src/icons/shapes-symbols-punctuation/Shapes';
2
+ import TrackLine from '@/src/icons/shapes-symbols-punctuation/TrackLine';
3
+ export { Shapes, TrackLine };
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.41.0",
3
+ "version": "1.42.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
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 };