@hellobetterdigitalnz/betterui 0.0.3-273 → 0.0.3-275
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/People/Users/Users.d.ts +4 -0
- 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/Desktop/Desktop.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 +6 -0
- package/dist/index.cjs.js +8 -8
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +954 -571
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/Components/Icons/People/Users/Users.tsx +43 -0
- 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/Desktop/Desktop.tsx +49 -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 +6 -0
|
@@ -68,6 +68,7 @@ export { default as FloppyDisk } from './OfficeAndEditing/FloppyDisk/FloppyDisk.
|
|
|
68
68
|
export { default as Copy } from './OfficeAndEditing/Copy/Copy.tsx';
|
|
69
69
|
export { default as Files } from './OfficeAndEditing/Files/Files.tsx';
|
|
70
70
|
export { default as User } from './People/User/User.tsx';
|
|
71
|
+
export { default as Users } from './People/Users/Users.tsx';
|
|
71
72
|
export { default as UserCircle } from './People/UserCircle/UserCircle.tsx';
|
|
72
73
|
export { default as UserSwitch } from './People/UserSwitch/UserSwitch.tsx';
|
|
73
74
|
export { default as PersonSimpleWalk } from './People/PersonSimpleWalk/PersonSimpleWalk.tsx';
|
|
@@ -78,6 +79,7 @@ export { default as LockKeyOpen } from './SecurityAndWarnings/LockKeyOpen/LockKe
|
|
|
78
79
|
export { default as Question } from './SecurityAndWarnings/Question/Question.tsx';
|
|
79
80
|
export { default as Key } from './SecurityAndWarnings/Key/Key.tsx';
|
|
80
81
|
export { default as Info } from './SecurityAndWarnings/Info/Info.tsx';
|
|
82
|
+
export { default as ShieldCheck } from './SecurityAndWarnings/ShieldCheck/ShieldCheck.tsx';
|
|
81
83
|
export { default as Bell } from './SystemAndDevice/Bell/Bell';
|
|
82
84
|
export { default as MagnifyingGlass } from './SystemAndDevice/MagnifyingGlass/MagnifyingGlass';
|
|
83
85
|
export { default as DotsSixVertical } from './SystemAndDevice/DotSixVertical/DotSixVertical.tsx';
|
|
@@ -92,10 +94,14 @@ export { default as SignIn } from './SystemAndDevice/SignIn/SignIn.tsx';
|
|
|
92
94
|
export { default as Check } from './SystemAndDevice/Check/Check.tsx';
|
|
93
95
|
export { default as ToggleRight } from './SystemAndDevice/ToggleRight/ToggleRight.tsx';
|
|
94
96
|
export { default as ToggleLeft } from './SystemAndDevice/ToggleLeft/ToggleLeft.tsx';
|
|
97
|
+
export { default as CloudCheck } from './SystemAndDevice/CloudCheck/CloudCheck.tsx';
|
|
98
|
+
export { default as DeviceMobile } from './SystemAndDevice/DeviceMobile/DeviceMobile.tsx';
|
|
99
|
+
export { default as Desktop } from './SystemAndDevice/Desktop/Desktop.tsx';
|
|
95
100
|
export { default as Calendar } from './Time/Calendar/Calendar';
|
|
96
101
|
export { default as CalendarCheck } from './Time/CalendarCheck/CalendarCheck.tsx';
|
|
97
102
|
export { default as CalendarBank } from './Time/CalendarBank/CalendarBank';
|
|
98
103
|
export { default as Clock } from './Time/Clock/Clock';
|
|
104
|
+
export { default as ClockCounterClockwise } from './Time/ClockCounterClockwise/ClockCounterClockwise.tsx';
|
|
99
105
|
export { default as Barbell } from './HealthAndWellness/Barbell/Barbell';
|
|
100
106
|
export { default as Mountains } from './WeatherAndNature/Mountains/Mountains';
|
|
101
107
|
export { default as Tree } from './WeatherAndNature/Tree/Tree';
|