@hellobetterdigitalnz/betterui 0.0.3-323 → 0.0.3-325
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/Arrows/ArrowsHorizontal/ArrowsHorizontal.d.ts +4 -0
- package/dist/Components/Icons/Arrows/ArrowsIn/ArrowsIn.d.ts +4 -0
- package/dist/Components/Icons/Arrows/ArrowsVertical/ArrowsVertical.d.ts +4 -0
- package/dist/Components/Icons/index.d.ts +3 -0
- package/dist/index.cjs.js +13 -13
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +1265 -1259
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/Components/DataDisplay/Accordion/AccordionItem.tsx +2 -2
- package/src/Components/Icons/Arrows/ArrowsHorizontal/ArrowsHorizontal.tsx +35 -0
- package/src/Components/Icons/Arrows/ArrowsIn/ArrowsIn.tsx +35 -0
- package/src/Components/Icons/Arrows/ArrowsVertical/ArrowsVertical.tsx +37 -0
- package/src/Components/Icons/index.ts +3 -1
|
@@ -9,6 +9,9 @@ export { default as ArrowRight } from './Arrows/ArrowRight/ArrowRight.tsx';
|
|
|
9
9
|
export { default as ArrowsDownUp } from './Arrows/ArrowsDownUp/ArrowsDownUp.tsx';
|
|
10
10
|
export { default as ArrowsOutCardinal } from './Arrows/ArrowsOutCardinal/ArrowsOutCardinal.tsx';
|
|
11
11
|
export { default as ArrowLineUpRight } from './Arrows/ArrowLineUpRight/ArrowLineUpRight.tsx';
|
|
12
|
+
export { default as ArrowsIn } from './Arrows/ArrowsIn/ArrowsIn.tsx';
|
|
13
|
+
export { default as ArrowsHorizontal } from './Arrows/ArrowsHorizontal/ArrowsHorizontal.tsx';
|
|
14
|
+
export { default as ArrowsVertical } from './Arrows/ArrowsVertical/ArrowsVertical.tsx';
|
|
12
15
|
export { default as WindowsLogo } from './Brands/WindowsLogo/WindowsLogo';
|
|
13
16
|
export { default as AmazonLogo } from './Brands/AmazonLogo/AmazonLogo';
|
|
14
17
|
export { default as AngularLogo } from './Brands/AngularLogo/AngularLogo';
|