@aurora-ds/components 1.8.6 → 1.8.7
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -2643,7 +2643,7 @@ Box.displayName = 'Box';
|
|
|
2643
2643
|
* @example <Stack gap='sm'>…</Stack>
|
|
2644
2644
|
* @example <Stack flexDirection='row' gap='md' alignItems='center' justifyContent='space-between'>…</Stack>
|
|
2645
2645
|
*/
|
|
2646
|
-
const Stack = ({ flexDirection = 'row', display = 'flex', gap = 'sm', alignItems = 'center',
|
|
2646
|
+
const Stack = ({ flexDirection = 'row', display = 'flex', gap = 'sm', alignItems = 'center', ...rest }) => (jsxRuntime.jsx(Box, { display: display, flexDirection: flexDirection, alignItems: alignItems, gap: gap, ...rest }));
|
|
2647
2647
|
Stack.displayName = 'Stack';
|
|
2648
2648
|
|
|
2649
2649
|
/**
|