-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: card: update card size prop and remove bunko story
- Loading branch information
1 parent
2bf20ef
commit 4c2c639
Showing
6 changed files
with
126 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`Card Card is large 1`] = ` | ||
<div> | ||
<div | ||
class="card list card-large" | ||
> | ||
<div | ||
class="header" | ||
> | ||
This is the card header | ||
</div> | ||
<div | ||
class="body" | ||
> | ||
This is the card body | ||
</div> | ||
<div | ||
class="footer" | ||
> | ||
This is the card footer | ||
</div> | ||
</div> | ||
</div> | ||
`; | ||
|
||
exports[`Card Card is medium 1`] = ` | ||
<div> | ||
<div | ||
class="card list card-medium" | ||
> | ||
<div | ||
class="header" | ||
> | ||
This is the card header | ||
</div> | ||
<div | ||
class="body" | ||
> | ||
This is the card body | ||
</div> | ||
<div | ||
class="footer" | ||
> | ||
This is the card footer | ||
</div> | ||
</div> | ||
</div> | ||
`; | ||
|
||
exports[`Card Card is small 1`] = ` | ||
<div> | ||
<div | ||
class="card list card-small" | ||
> | ||
<div | ||
class="header" | ||
> | ||
This is the card header | ||
</div> | ||
<div | ||
class="body" | ||
> | ||
This is the card body | ||
</div> | ||
<div | ||
class="footer" | ||
> | ||
This is the card footer | ||
</div> | ||
</div> | ||
</div> | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters