elementa-icons 1.23.0 → 1.27.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';
@@ -151,6 +152,7 @@ import { MetalBriefcase } from '@/src/icons/travel-hotel';
151
152
  // SECTION: Weather
152
153
  // !SECTION: Weather
153
154
  // SECTION: Writing
155
+ import { Checklist, Notepad } from '@/src/icons/writing/';
154
156
  // !SECTION: Writing
155
157
  // SECTION: Navigation & Menu
156
158
  // !SECTION: Navigation & Menu
@@ -172,7 +174,8 @@ import { Info, TickCloud } from '@/src/icons/status-notifications';
172
174
  // !SECTION: Alert
173
175
  // SECTION: Alphabet
174
176
  // !SECTION: Alphabet
175
- // SECTION: Animals
177
+ // SECTION:
178
+ export { DogPaw };
176
179
  // !SECTION: Animals
177
180
  // SECTION: Arrows & Direction
178
181
  export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
@@ -307,7 +310,7 @@ export { Calendar, Clock };
307
310
  // SECTION: Toggle
308
311
  // !SECTION: Toggle
309
312
  // SECTION: Transportation
310
- export { Airplane, Bus, Cab };
313
+ export { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parking, Train, Tram };
311
314
  // !SECTION: Transportation
312
315
  // SECTION: Travel & Hotel
313
316
  export { MetalBriefcase };
@@ -315,6 +318,7 @@ export { MetalBriefcase };
315
318
  // SECTION: Weather
316
319
  // !SECTION: Weather
317
320
  // SECTION: Writing
321
+ export { Checklist, Notepad };
318
322
  // !SECTION: Writing
319
323
  // SECTION: Navigation & Menu
320
324
  // !SECTION: Navigation & Menu
@@ -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 };
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Checklist: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Checklist;
@@ -0,0 +1,6 @@
1
+ import { IconComponentProps } from '@/src/lib/types';
2
+ /**
3
+ * This function renders an SVG icon.
4
+ */
5
+ declare const Notepad: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default Notepad;
@@ -0,0 +1,3 @@
1
+ import Checklist from '@/src/icons/writing/Checklist';
2
+ import Notepad from '@/src/icons/writing/Notepad';
3
+ export { Checklist, Notepad };
@@ -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,12 @@ 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';
29
+ import { Checklist, Notepad } from '@/src/icons/writing/';
28
30
  import { Cancel, Check, Filter, Search } from '@/src/icons/user-interface-controls';
29
31
  import { Info, TickCloud } from '@/src/icons/status-notifications';
32
+ export { DogPaw };
30
33
  export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
31
34
  export { DiamondRing };
32
35
  export { Airpods, Devices, USBACable };
@@ -49,7 +52,8 @@ export { AddFriend, AddFriends };
49
52
  export { Basketball, Dart };
50
53
  export { Description };
51
54
  export { Calendar, Clock };
52
- export { Airplane, Bus, Cab };
55
+ export { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parking, Train, Tram };
53
56
  export { MetalBriefcase };
57
+ export { Checklist, Notepad };
54
58
  export { Cancel, Check, Filter, Search };
55
59
  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.27.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';
@@ -176,6 +188,7 @@ import { MetalBriefcase } from '@/src/icons/travel-hotel';
176
188
  // SECTION: Weather
177
189
  // !SECTION: Weather
178
190
  // SECTION: Writing
191
+ import { Checklist, Notepad } from '@/src/icons/writing/';
179
192
  // !SECTION: Writing
180
193
  // SECTION: Navigation & Menu
181
194
  // !SECTION: Navigation & Menu
@@ -203,7 +216,8 @@ import { Info, TickCloud } from '@/src/icons/status-notifications';
203
216
  // !SECTION: Alert
204
217
  // SECTION: Alphabet
205
218
  // !SECTION: Alphabet
206
- // SECTION: Animals
219
+ // SECTION:
220
+ export { DogPaw };
207
221
  // !SECTION: Animals
208
222
  // SECTION: Arrows & Direction
209
223
  export {
@@ -355,7 +369,18 @@ export { Calendar, Clock };
355
369
  // SECTION: Toggle
356
370
  // !SECTION: Toggle
357
371
  // SECTION: Transportation
358
- export { Airplane, Bus, Cab };
372
+ export {
373
+ Airplane,
374
+ Bus,
375
+ Cab,
376
+ Car1,
377
+ Car2,
378
+ CarService,
379
+ FuelDispenserNozzle,
380
+ Parking,
381
+ Train,
382
+ Tram
383
+ };
359
384
  // !SECTION: Transportation
360
385
  // SECTION: Travel & Hotel
361
386
  export { MetalBriefcase };
@@ -363,6 +388,7 @@ export { MetalBriefcase };
363
388
  // SECTION: Weather
364
389
  // !SECTION: Weather
365
390
  // SECTION: Writing
391
+ export { Checklist, Notepad };
366
392
  // !SECTION: Writing
367
393
  // SECTION: Navigation & Menu
368
394
  // !SECTION: Navigation & Menu