@hellobetterdigitalnz/betterui 0.0.3-331 → 0.0.3-333
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/Design/Pencil/Pencil.d.ts +4 -0
- package/dist/Components/Icons/HealthAndWellness/Lifebuoy/Lifebuoy.d.ts +4 -0
- package/dist/Components/Icons/index.d.ts +2 -0
- package/dist/index.cjs.js +12 -12
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +803 -838
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/Components/Icons/Design/Pencil/Pencil.tsx +49 -0
- package/src/Components/Icons/HealthAndWellness/Lifebuoy/Lifebuoy.tsx +36 -0
- package/src/Components/Icons/MathsAndFinance/ChartLine/ChartLine.tsx +8 -21
- package/src/Components/Icons/index.ts +2 -0
|
@@ -53,6 +53,7 @@ export { default as ChatTearDropDots } from './Communication/ChatTeardropDots/Ch
|
|
|
53
53
|
export { default as PaperPlaneTilt } from './Communication/PaperPlaneTilt/PaperPlaneTilt.tsx';
|
|
54
54
|
export { default as Eye } from './Design/Eye/Eye';
|
|
55
55
|
export { default as EyeSlash } from './Design/EyeSlash/EyeSlash';
|
|
56
|
+
export { default as Pencil } from './Design/Pencil/Pencil.tsx';
|
|
56
57
|
export { default as PencilLine } from './Design/PencilLine/PencilLine.tsx';
|
|
57
58
|
export { default as PencilSimple } from './Design/PencilSimple/PencilSimple.tsx';
|
|
58
59
|
export { default as Ruler } from './Design/Ruler/Ruler.tsx';
|
|
@@ -217,6 +218,7 @@ export { default as HourglassMedium } from './Time/HourglassMedium/HourglassMedi
|
|
|
217
218
|
export { default as HourglassSimple } from './Time/HourglassSimple/HourglassSimple.tsx';
|
|
218
219
|
export { default as Barbell } from './HealthAndWellness/Barbell/Barbell';
|
|
219
220
|
export { default as Brain } from './HealthAndWellness/Brain/Brain.tsx';
|
|
221
|
+
export { default as Lifebuoy } from './HealthAndWellness/Lifebuoy/Lifebuoy.tsx';
|
|
220
222
|
export { default as Mountains } from './WeatherAndNature/Mountains/Mountains';
|
|
221
223
|
export { default as Tree } from './WeatherAndNature/Tree/Tree';
|
|
222
224
|
export { default as Campfire } from './WeatherAndNature/Campfire/Campfire';
|