@hellobetterdigitalnz/betterui 0.0.3-273 → 0.0.3-274
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/Components/Icons/SecurityAndWarnings/ShieldCheck/ShieldCheck.d.ts +4 -0
- package/dist/Components/Icons/SystemAndDevice/CloudCheck/CloudCheck.d.ts +4 -0
- package/dist/Components/Icons/SystemAndDevice/DeviceMobile/DeviceMobile.d.ts +4 -0
- package/dist/Components/Icons/Time/ClockCounterClockwise/ClockCounterClockwise.d.ts +4 -0
- package/dist/Components/Icons/index.d.ts +4 -0
- package/dist/index.cjs.js +7 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +471 -164
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/Components/Icons/SecurityAndWarnings/ShieldCheck/ShieldCheck.tsx +89 -0
- package/src/Components/Icons/SystemAndDevice/CloudCheck/CloudCheck.tsx +74 -0
- package/src/Components/Icons/SystemAndDevice/DeviceMobile/DeviceMobile.tsx +78 -0
- package/src/Components/Icons/Time/ClockCounterClockwise/ClockCounterClockwise.tsx +74 -0
- package/src/Components/Icons/index.ts +4 -0
|
@@ -78,6 +78,7 @@ export { default as LockKeyOpen } from './SecurityAndWarnings/LockKeyOpen/LockKe
|
|
|
78
78
|
export { default as Question } from './SecurityAndWarnings/Question/Question.tsx';
|
|
79
79
|
export { default as Key } from './SecurityAndWarnings/Key/Key.tsx';
|
|
80
80
|
export { default as Info } from './SecurityAndWarnings/Info/Info.tsx';
|
|
81
|
+
export { default as ShieldCheck } from './SecurityAndWarnings/ShieldCheck/ShieldCheck.tsx';
|
|
81
82
|
export { default as Bell } from './SystemAndDevice/Bell/Bell';
|
|
82
83
|
export { default as MagnifyingGlass } from './SystemAndDevice/MagnifyingGlass/MagnifyingGlass';
|
|
83
84
|
export { default as DotsSixVertical } from './SystemAndDevice/DotSixVertical/DotSixVertical.tsx';
|
|
@@ -92,10 +93,13 @@ export { default as SignIn } from './SystemAndDevice/SignIn/SignIn.tsx';
|
|
|
92
93
|
export { default as Check } from './SystemAndDevice/Check/Check.tsx';
|
|
93
94
|
export { default as ToggleRight } from './SystemAndDevice/ToggleRight/ToggleRight.tsx';
|
|
94
95
|
export { default as ToggleLeft } from './SystemAndDevice/ToggleLeft/ToggleLeft.tsx';
|
|
96
|
+
export { default as CloudCheck } from './SystemAndDevice/CloudCheck/CloudCheck.tsx';
|
|
97
|
+
export { default as DeviceMobile } from './SystemAndDevice/DeviceMobile/DeviceMobile.tsx';
|
|
95
98
|
export { default as Calendar } from './Time/Calendar/Calendar';
|
|
96
99
|
export { default as CalendarCheck } from './Time/CalendarCheck/CalendarCheck.tsx';
|
|
97
100
|
export { default as CalendarBank } from './Time/CalendarBank/CalendarBank';
|
|
98
101
|
export { default as Clock } from './Time/Clock/Clock';
|
|
102
|
+
export { default as ClockCounterClockwise } from './Time/ClockCounterClockwise/ClockCounterClockwise.tsx';
|
|
99
103
|
export { default as Barbell } from './HealthAndWellness/Barbell/Barbell';
|
|
100
104
|
export { default as Mountains } from './WeatherAndNature/Mountains/Mountains';
|
|
101
105
|
export { default as Tree } from './WeatherAndNature/Tree/Tree';
|