elementa-icons 1.36.0 → 1.37.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/disaster-crisis/Siren.js +16 -0
- package/dist/icons/disaster-crisis/index.js +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -0
- package/dist/types/icons/disaster-crisis/Siren.d.ts +6 -0
- package/dist/types/icons/disaster-crisis/index.d.ts +2 -0
- package/dist/types/index.d.ts +2 -0
- package/package.json +2 -2
- package/src/index.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -54,6 +54,7 @@ import { ElectricPlug } from '@/src/icons/communication';
|
|
|
54
54
|
import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
|
|
55
55
|
// !SECTION: Devices & Hardware
|
|
56
56
|
// SECTION: Disaster & Crisis
|
|
57
|
+
import { Siren } from '@/src/icons/disaster-crisis';
|
|
57
58
|
// !SECTION: Disaster & Crisis
|
|
58
59
|
// SECTION: Editing & Creation
|
|
59
60
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
@@ -228,6 +229,7 @@ export { ElectricPlug };
|
|
|
228
229
|
export { Airpods, Devices, USBACable };
|
|
229
230
|
// !SECTION: Devices & Hardware
|
|
230
231
|
// SECTION: Disaster & Crisis
|
|
232
|
+
export { Siren };
|
|
231
233
|
// !SECTION: Disaster & Crisis
|
|
232
234
|
// SECTION: Editing & Creation
|
|
233
235
|
export { Add, Cut, Copy, Edit, Paste };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { Puzzle } from '@/src/icons/childhood/';
|
|
|
12
12
|
import { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt } from '@/src/icons/clothing-fashion';
|
|
13
13
|
import { ElectricPlug } from '@/src/icons/communication';
|
|
14
14
|
import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
|
|
15
|
+
import { Siren } from '@/src/icons/disaster-crisis';
|
|
15
16
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
16
17
|
import { OpenBook } from '@/src/icons/education';
|
|
17
18
|
import { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips } from '@/src/icons/food-beverage';
|
|
@@ -48,6 +49,7 @@ export { Puzzle };
|
|
|
48
49
|
export { Beard, CombScissors, DiamondRing, Hanger, Necklace, SkinCare, Tshirt };
|
|
49
50
|
export { ElectricPlug };
|
|
50
51
|
export { Airpods, Devices, USBACable };
|
|
52
|
+
export { Siren };
|
|
51
53
|
export { Add, Cut, Copy, Edit, Paste };
|
|
52
54
|
export { OpenBook };
|
|
53
55
|
export { BeerMug, Cake, Cutlery, EatenApple, FoodTiffin, GreenTea, PotatoChips };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "elementa-icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.37.0",
|
|
4
4
|
"description": "Elementa icons library.",
|
|
5
5
|
"homepage": "https://elementa.dev",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"build:watch": "rollup -c -w",
|
|
38
38
|
"prepublishOnly": "npm run build",
|
|
39
39
|
"publish:npm": "npm publish --access public",
|
|
40
|
-
"svgr": "svgr src/icons/*.svg --template src/lib/template.js --expand-props none --ignore-existing"
|
|
40
|
+
"svgr": "svgr src/icons/*.svg --stdin-filepath .prettierrc --template src/lib/template.js --expand-props none --ignore-existing"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": "^19.1.0"
|
package/src/index.ts
CHANGED
|
@@ -71,6 +71,7 @@ import { ElectricPlug } from '@/src/icons/communication';
|
|
|
71
71
|
import { Airpods, Devices, USBACable } from '@/src/icons/devices-hardware';
|
|
72
72
|
// !SECTION: Devices & Hardware
|
|
73
73
|
// SECTION: Disaster & Crisis
|
|
74
|
+
import { Siren } from '@/src/icons/disaster-crisis';
|
|
74
75
|
// !SECTION: Disaster & Crisis
|
|
75
76
|
// SECTION: Editing & Creation
|
|
76
77
|
import { Add, Cut, Copy, Edit, Paste } from '@/src/icons/editing-creation';
|
|
@@ -287,6 +288,7 @@ export { ElectricPlug };
|
|
|
287
288
|
export { Airpods, Devices, USBACable };
|
|
288
289
|
// !SECTION: Devices & Hardware
|
|
289
290
|
// SECTION: Disaster & Crisis
|
|
291
|
+
export { Siren };
|
|
290
292
|
// !SECTION: Disaster & Crisis
|
|
291
293
|
// SECTION: Editing & Creation
|
|
292
294
|
export { Add, Cut, Copy, Edit, Paste };
|