elementa-icons 1.44.0 → 1.45.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/status-notifications/Checkpoint.js +16 -0
- package/dist/icons/status-notifications/RefreshWithTick.js +14 -0
- package/dist/icons/status-notifications/TickSquare.js +9 -0
- package/dist/icons/status-notifications/index.js +4 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -2
- package/dist/types/icons/status-notifications/Checkpoint.d.ts +6 -0
- package/dist/types/icons/status-notifications/RefreshWithTick.d.ts +6 -0
- package/dist/types/icons/status-notifications/TickSquare.d.ts +6 -0
- package/dist/types/icons/status-notifications/index.d.ts +4 -1
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/index.ts +8 -2
package/dist/index.js
CHANGED
|
@@ -176,7 +176,7 @@ import { Checklist, Notepad } from '@/src/icons/writing';
|
|
|
176
176
|
import { Cancel, Check, Filter, Search } from '@/src/icons/user-interface-controls';
|
|
177
177
|
// !SECTION: User Interface Controls
|
|
178
178
|
// SECTION: Status & Notifications
|
|
179
|
-
import { Info, TickCloud } from '@/src/icons/status-notifications';
|
|
179
|
+
import { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare } from '@/src/icons/status-notifications';
|
|
180
180
|
// !SECTION: Status & Notifications
|
|
181
181
|
// SECTION: Layout & Grid
|
|
182
182
|
// !SECTION: Layout & Grid
|
|
@@ -358,8 +358,8 @@ export { Checklist, Notepad };
|
|
|
358
358
|
export { Cancel, Check, Filter, Search };
|
|
359
359
|
// !SECTION: User Interface Controls
|
|
360
360
|
// SECTION: Status & Notifications
|
|
361
|
+
export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };
|
|
361
362
|
// !SECTION: Status & Notifications
|
|
362
|
-
export { Info, TickCloud };
|
|
363
363
|
// SECTION: Layout & Grid
|
|
364
364
|
// !SECTION: Layout & Grid
|
|
365
365
|
// SECTION: Activities
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { IconComponentProps } from '@/src/lib/types';
|
|
2
|
+
/**
|
|
3
|
+
* This function renders an SVG icon.
|
|
4
|
+
*/
|
|
5
|
+
declare const RefreshWithTick: ({ color, height, strokeWidth, width }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default RefreshWithTick;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* This file exports all icons in the "Status & Notifications" category.
|
|
3
3
|
*/
|
|
4
|
+
import Checkpoint from '@/src/icons/status-notifications/Checkpoint';
|
|
4
5
|
import Info from '@/src/icons/status-notifications/Info';
|
|
6
|
+
import RefreshWithTick from '@/src/icons/status-notifications/RefreshWithTick';
|
|
5
7
|
import TickCloud from '@/src/icons/status-notifications/TickCloud';
|
|
6
|
-
|
|
8
|
+
import TickSquare from '@/src/icons/status-notifications/TickSquare';
|
|
9
|
+
export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -44,7 +44,7 @@ import { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parkin
|
|
|
44
44
|
import { MetalBriefcase } from '@/src/icons/travel-hotel';
|
|
45
45
|
import { Checklist, Notepad } from '@/src/icons/writing';
|
|
46
46
|
import { Cancel, Check, Filter, Search } from '@/src/icons/user-interface-controls';
|
|
47
|
-
import { Info, TickCloud } from '@/src/icons/status-notifications';
|
|
47
|
+
import { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare } from '@/src/icons/status-notifications';
|
|
48
48
|
export { DogPaw };
|
|
49
49
|
export { ArrowDown, ArrowLeft, ArrowRight, ArrowUp, ChevronDown, ChevronLeft, ChevronRight, ChevronUp };
|
|
50
50
|
export { Rocket };
|
|
@@ -88,4 +88,4 @@ export { Airplane, Bus, Cab, Car1, Car2, CarService, FuelDispenserNozzle, Parkin
|
|
|
88
88
|
export { MetalBriefcase };
|
|
89
89
|
export { Checklist, Notepad };
|
|
90
90
|
export { Cancel, Check, Filter, Search };
|
|
91
|
-
export { Info, TickCloud };
|
|
91
|
+
export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -231,7 +231,13 @@ import {
|
|
|
231
231
|
} from '@/src/icons/user-interface-controls';
|
|
232
232
|
// !SECTION: User Interface Controls
|
|
233
233
|
// SECTION: Status & Notifications
|
|
234
|
-
import {
|
|
234
|
+
import {
|
|
235
|
+
Checkpoint,
|
|
236
|
+
Info,
|
|
237
|
+
RefreshWithTick,
|
|
238
|
+
TickCloud,
|
|
239
|
+
TickSquare
|
|
240
|
+
} from '@/src/icons/status-notifications';
|
|
235
241
|
// !SECTION: Status & Notifications
|
|
236
242
|
// SECTION: Layout & Grid
|
|
237
243
|
// !SECTION: Layout & Grid
|
|
@@ -442,8 +448,8 @@ export { Checklist, Notepad };
|
|
|
442
448
|
export { Cancel, Check, Filter, Search };
|
|
443
449
|
// !SECTION: User Interface Controls
|
|
444
450
|
// SECTION: Status & Notifications
|
|
451
|
+
export { Checkpoint, Info, RefreshWithTick, TickCloud, TickSquare };
|
|
445
452
|
// !SECTION: Status & Notifications
|
|
446
|
-
export { Info, TickCloud };
|
|
447
453
|
// SECTION: Layout & Grid
|
|
448
454
|
// !SECTION: Layout & Grid
|
|
449
455
|
// SECTION: Activities
|