File tree 5 files changed +12
-12
lines changed
5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ export default Layout({...meta})
7
7
8
8
` Card ` is used to contain information together. There are multiple ways to customize the content within the card. Cards are 100% wide unless otherwise stated.
9
9
10
- For information on Card style and usage guidelines, check out [ Card Design Guidelines] ( /design/card ) .
10
+ For information on Card style and usage guidelines, check out [ Card Design Guidelines] ( /design/cards ) .
11
11
12
12
#### Example
13
13
Original file line number Diff line number Diff line change 986
986
resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
987
987
integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==
988
988
989
- " @hack4impact-uiuc/bridge@^1.2.3 " :
990
- version "1.2.2 "
991
- resolved "https://registry.yarnpkg.com/@hack4impact-uiuc/bridge/-/bridge-1.2.2 .tgz#652b0d80943a99340a5ba535b92176e5d8472452 "
992
- integrity sha512-J2UT2JLxk25YgcecLXoqPS9fhB5ZNJjXTwmESpKhUbfOHwdYHHAvPBe/qiTDUcNc5cHADw/1zaQ5+un1V0wjgQ ==
989
+ " @hack4impact-uiuc/bridge@^1.2.5 " :
990
+ version "1.2.5 "
991
+ resolved "https://registry.yarnpkg.com/@hack4impact-uiuc/bridge/-/bridge-1.2.5 .tgz#dc9d799938c2bddedc277e6618d43cf2f293d5ab "
992
+ integrity sha512-C7id+SlAJluaXpM11EueRauX/ovRdWY8aXo0hEChBQhUO7Gj3bMnu1Gm9WjR2SW9tKr/WwnrO9PyWVqIHVlpeA ==
993
993
dependencies :
994
994
" @styled-system/prop-types" " ^5.1.5"
995
995
" @styled-system/theme-get" " ^5.1.2"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @hack4impact-uiuc/bridge" ,
3
- "version" : " 1.2.6 " ,
3
+ "version" : " 1.2.7 " ,
4
4
"description" : " Hack4Impact UIUC's Design System + React Component library" ,
5
5
"main" : " dist/index.js" ,
6
6
"author" :
" Timothy Ko <[email protected] >" ,
Original file line number Diff line number Diff line change 1
1
import { FlexboxProps , Theme } from "styled-system" ;
2
2
import { FunctionComponent } from "react" ;
3
- import { BorderProps , CommonProps } from "../../utils/common" ;
3
+ import { BordersProps , CommonProps } from "../../utils/common" ;
4
4
5
5
export interface BoxProps extends BordersProps , CommonProps , FlexboxProps {
6
6
theme ?: Theme ;
Original file line number Diff line number Diff line change 1
1
import { FunctionComponent , HTMLProps } from "react" ;
2
2
import { Theme } from "styled-system" ;
3
3
import { CommonProps , TypographyProps } from "../../utils/common" ;
4
- import { BoxProps } from "../Box " ;
4
+ import { FlexProps } from "../Flex " ;
5
5
6
- interface CardWrapperProps extends BoxProps {
7
- theme : Theme ;
6
+ interface CardWrapperProps extends FlexProps {
7
+ theme ? : Theme ;
8
8
}
9
9
10
10
// TODO: is there better naming for this?
11
11
interface CardTypographyProps extends CommonProps , TypographyProps {
12
- theme : Theme ;
12
+ theme ? : Theme ;
13
13
}
14
14
15
15
export interface CardProps extends CardWrapperProps { }
@@ -21,7 +21,7 @@ export interface CardContentProps extends CardWrapperProps {}
21
21
export interface CardFooterProps extends CardWrapperProps { }
22
22
23
23
export interface CardImageProps extends HTMLProps < HTMLImageElement > {
24
- theme : Theme ;
24
+ theme ? : Theme ;
25
25
}
26
26
27
27
export interface CardOverlineProps extends CardTypographyProps { }
You can’t perform that action at this time.
0 commit comments