elementa-icons 1.23.0 → 1.25.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
@@ -9,6 +9,7 @@
9
9
  // SECTION: Alphabet
10
10
  // !SECTION: Alphabet
11
11
  // SECTION: Animals
12
+ import { DogPaw } from '@/src/icons/animals/';
12
13
  // !SECTION: Animals
13
14
  // SECTION: Arrows & Direction
14
15
  import { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp } from '@/src/icons/arrows-directions';
@@ -143,7 +144,7 @@ import { Calendar, Clock } from '@/src/icons/time-calendar';
143
144
  // SECTION: Toggle
144
145
  // !SECTION: Toggle
145
146
  // SECTION: Transportation
146
- import { Airplane, Bus, Cab } from '@/src/icons/transportation';
147
+ import { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parking, Train, Tram } from '@/src/icons/transportation';
147
148
  // !SECTION: Transportation
148
149
  // SECTION: Travel & Hotel
149
150
  import { MetalBriefcase } from '@/src/icons/travel-hotel';
@@ -172,7 +173,8 @@ import { Info, TickCloud } from '@/src/icons/status-notifications';
172
173
  // !SECTION: Alert
173
174
  // SECTION: Alphabet
174
175
  // !SECTION: Alphabet
175
- // SECTION: Animals
176
+ // SECTION:
177
+ export { DogPaw };
176
178
  // !SECTION: Animals
177
179
  // SECTION: Arrows & Direction
178
180
  export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
@@ -307,7 +309,7 @@ export { Calendar, Clock };
307
309
  // SECTION: Toggle
308
310
  // !SECTION: Toggle
309
311
  // SECTION: Transportation
310
- export { Airplane, Bus, Cab };
312
+ export { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parking, Train, Tram };
311
313
  // !SECTION: Transportation
312
314
  // SECTION: Travel & Hotel
313
315
  export { MetalBriefcase };
@@ -4,8 +4,6 @@
4
4
  * This function is a custom template for converting SVG icons to React components.
5
5
  */
6
6
  const iconTemplate = ({ imports, interfaces, componentName, props, jsx, exports }, { tpl }) => {
7
- console.log(props);
8
- // Remove 'Svg' from the export name if present
9
7
  const exportName = componentName.replace(/^Svg/, '');
10
8
  return tpl `
11
9
  ${imports};
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const DogPaw: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default DogPaw;
@@ -0,0 +1,2 @@
1
+ import DogPaw from '@/src/icons/animals/DogPaw';
2
+ export { DogPaw };
@@ -4,4 +4,11 @@
4
4
  import Airplane from '@/src/icons/transportation/Airplane';
5
5
  import Bus from '@/src/icons/transportation/Bus';
6
6
  import Cab from '@/src/icons/transportation/Cab';
7
- export { Airplane, Bus, Cab };
7
+ import Car1 from '@/src/icons/transportation/Car1';
8
+ import Car2 from '@/src/icons/transportation/Car2';
9
+ import CarService from '@/src/icons/transportation/CarService';
10
+ import FuelDispenserNozzle from '@/src/icons/transportation/FuelDispenserNozzle';
11
+ import Parking from '@/src/icons/transportation/Parking';
12
+ import Train from '@/src/icons/transportation/Train';
13
+ import Tram from '@/src/icons/transportation/Tram';
14
+ export { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parking, Train, Tram };
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * This file exports all the icons for the library.
3
3
  */
4
+ import { DogPaw } from '@/src/icons/animals/';
4
5
  import { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp } from '@/src/icons/arrows-directions';
5
6
  import { DiamondRing } from '@/src/icons/clothing-fashion';
6
7
  import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
@@ -23,10 +24,11 @@ import { AddFriend, AddFriends } from '@/src/icons/social-people';
23
24
  import { Basketball, Dart } from '@/src/icons/sports';
24
25
  import { Description } from '@/src/icons/text-formatting';
25
26
  import { Calendar, Clock } from '@/src/icons/time-calendar';
26
- import { Airplane, Bus, Cab } from '@/src/icons/transportation';
27
+ import { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parking, Train, Tram } from '@/src/icons/transportation';
27
28
  import { MetalBriefcase } from '@/src/icons/travel-hotel';
28
29
  import { Cancel, Check, Filter, Search } from '@/src/icons/user-interface-controls';
29
30
  import { Info, TickCloud } from '@/src/icons/status-notifications';
31
+ export { DogPaw };
30
32
  export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
31
33
  export { DiamondRing };
32
34
  export { Airpods, Devices, USBACable };
@@ -49,7 +51,7 @@ export { AddFriend, AddFriends };
49
51
  export { Basketball, Dart };
50
52
  export { Description };
51
53
  export { Calendar, Clock };
52
- export { Airplane, Bus, Cab };
54
+ export { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parking, Train, Tram };
53
55
  export { MetalBriefcase };
54
56
  export { Cancel, Check, Filter, Search };
55
57
  export { Info, TickCloud };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elementa-icons",
3
- "version": "1.23.0",
3
+ "version": "1.25.0",
4
4
  "description": "Elementa icons library.",
5
5
  "homepage": "https://elementa.dev",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -9,6 +9,7 @@
9
9
  // SECTION: Alphabet
10
10
  // !SECTION: Alphabet
11
11
  // SECTION: Animals
12
+ import { DogPaw } from '@/src/icons/animals/';
12
13
  // !SECTION: Animals
13
14
  // SECTION: Arrows & Direction
14
15
  import {
@@ -168,7 +169,18 @@ import { Calendar, Clock } from '@/src/icons/time-calendar';
168
169
  // SECTION: Toggle
169
170
  // !SECTION: Toggle
170
171
  // SECTION: Transportation
171
- import { Airplane, Bus, Cab } from '@/src/icons/transportation';
172
+ import {
173
+ Airplane,
174
+ Bus,
175
+ Cab,
176
+ Car1,
177
+ Car2,
178
+ CarService,
179
+ FuelDispenserNozzle,
180
+ Parking,
181
+ Train,
182
+ Tram
183
+ } from '@/src/icons/transportation';
172
184
  // !SECTION: Transportation
173
185
  // SECTION: Travel & Hotel
174
186
  import { MetalBriefcase } from '@/src/icons/travel-hotel';
@@ -203,7 +215,8 @@ import { Info, TickCloud } from '@/src/icons/status-notifications';
203
215
  // !SECTION: Alert
204
216
  // SECTION: Alphabet
205
217
  // !SECTION: Alphabet
206
- // SECTION: Animals
218
+ // SECTION:
219
+ export { DogPaw };
207
220
  // !SECTION: Animals
208
221
  // SECTION: Arrows & Direction
209
222
  export {
@@ -355,7 +368,18 @@ export { Calendar, Clock };
355
368
  // SECTION: Toggle
356
369
  // !SECTION: Toggle
357
370
  // SECTION: Transportation
358
- export { Airplane, Bus, Cab };
371
+ export {
372
+ Airplane,
373
+ Bus,
374
+ Cab,
375
+ Car1,
376
+ Car2,
377
+ CarService,
378
+ FuelDispenserNozzle,
379
+ Parking,
380
+ Train,
381
+ Tram
382
+ };
359
383
  // !SECTION: Transportation
360
384
  // SECTION: Travel & Hotel
361
385
  export { MetalBriefcase };