@bitrise/bitkit 13.74.0 → 13.76.0
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/package.json
CHANGED
|
@@ -10,12 +10,11 @@ export interface DividerProps extends ChakraDividerProps {
|
|
|
10
10
|
* Dividers are used to visually separate content in a list or group.
|
|
11
11
|
*/
|
|
12
12
|
const Divider = (props: DividerProps) => {
|
|
13
|
-
const { orientation, size, ...rest } = props;
|
|
13
|
+
const { orientation = 'horizontal', size = '1', variant = 'solid', ...rest } = props;
|
|
14
14
|
const properties: ChakraDividerProps = {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
variant: 'solid',
|
|
15
|
+
orientation,
|
|
16
|
+
size,
|
|
17
|
+
variant,
|
|
19
18
|
...rest,
|
|
20
19
|
};
|
|
21
20
|
if (orientation === 'horizontal') {
|