@hellobetterdigitalnz/betterui 0.0.3-330 → 0.0.3-332
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/Games/Strategy/Strategy.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 +13 -13
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +809 -844
- 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/Games/Strategy/Strategy.tsx +48 -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';
|
|
@@ -88,6 +89,7 @@ export { default as Diamond } from './Games/Diamond/Diamond.tsx';
|
|
|
88
89
|
export { default as DiceFive } from './Games/DiceFive/DiceFive.tsx';
|
|
89
90
|
export { default as DiceFour } from './Games/DiceFour/DiceFour.tsx';
|
|
90
91
|
export { default as MaskHappy } from './Games/MaskHappy/MaskHappy.tsx';
|
|
92
|
+
export { default as Strategy } from './Games/Strategy/Strategy.tsx';
|
|
91
93
|
export { default as Globe } from './MapAndTravel/Globe/Globe.tsx';
|
|
92
94
|
export { default as House } from './MapAndTravel/House/House.tsx';
|
|
93
95
|
export { default as HouseSimple } from './MapAndTravel/HouseSimple/HouseSimple.tsx';
|