@bitrise/bitkit 9.12.1-alpha-chakra.1 → 9.12.1-alpha-chakra.2

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitrise/bitkit",
3
3
  "description": "Bitrise React component library",
4
- "version": "9.12.1-alpha-chakra.1",
4
+ "version": "9.12.1-alpha-chakra.2",
5
5
  "repository": "git@github.com:bitrise-io/bitkit.git",
6
6
  "main": "src/index.ts",
7
7
  "license": "UNLICENSED",
@@ -26,8 +26,8 @@ const Card = forwardRef<CardProps, 'div'>((props, ref) => {
26
26
 
27
27
  Card.defaultProps = {
28
28
  as: 'div',
29
- borderRadius: '12',
30
- boxShadow: 'medium',
29
+ borderRadius: '8',
30
+ boxShadow: 'small',
31
31
  } as CardProps;
32
32
 
33
33
  export default Card;
@@ -1,10 +1,7 @@
1
1
  import React from 'react';
2
- import { Sizes } from '../../Foundations/Sizes/Sizes';
3
2
  import Box, { BoxProps } from '../Box/Box';
4
3
 
5
- export interface CardContentProps extends BoxProps {
6
- padding?: keyof Sizes;
7
- }
4
+ export type CardContentProps = BoxProps;
8
5
 
9
6
  /**
10
7
  * Basic container element with default box shadow, border radius and padding.