@hellobetterdigitalnz/betterui 0.0.3-155 → 0.0.3-157
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/Media/PlayCircle/PlayCircle.d.ts +3 -0
- package/dist/Components/Icons/Media/StopCircle/StopCircle.d.ts +3 -0
- package/dist/Components/Icons/WeatherAndNature/CloudSun/CloudSun.d.ts +3 -0
- package/dist/Components/Icons/WeatherAndNature/Snowflake/Snowflake.d.ts +3 -0
- package/dist/Components/Icons/index.d.ts +4 -0
- package/dist/index.cjs.js +6 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1136 -915
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -40,6 +40,8 @@ export { default as ChartLine } from './MathsAndFinance/ChartLine/ChartLine.tsx'
|
|
|
40
40
|
export { default as ChartPie } from './MathsAndFinance/ChartPie/ChartPie.tsx';
|
|
41
41
|
export { default as ChartBarHorizontal } from './MathsAndFinance/ChartBarHorizontal/ChartBarHorizontal.tsx';
|
|
42
42
|
export { default as SildersHorizontal } from './Media/SlidersHorizontal/SlidersHorizontal.tsx';
|
|
43
|
+
export { default as PlayCircle } from './Media/PlayCircle/PlayCircle.tsx';
|
|
44
|
+
export { default as StopCircle } from './Media/StopCircle/StopCircle.tsx';
|
|
43
45
|
export { default as TextAa } from './OfficeAndEditing/TextAa/TextAa.tsx';
|
|
44
46
|
export { default as TextColumns } from './OfficeAndEditing/TextColumns/TextColumns.tsx';
|
|
45
47
|
export { default as Folder } from './OfficeAndEditing/Folder/Folder.tsx';
|
|
@@ -72,3 +74,5 @@ export { default as Barbell } from './HealthAndWellness/Barbell/Barbell';
|
|
|
72
74
|
export { default as Mountains } from './WeatherAndNature/Mountains/Mountains';
|
|
73
75
|
export { default as Tree } from './WeatherAndNature/Tree/Tree';
|
|
74
76
|
export { default as Campfire } from './WeatherAndNature/Campfire/Campfire';
|
|
77
|
+
export { default as CloudSun } from './WeatherAndNature/CloudSun/CloudSun.tsx';
|
|
78
|
+
export { default as Snowflake } from './WeatherAndNature/Snowflake/Snowflake.tsx';
|