-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- Loading branch information
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,8 +72,11 @@ exports[`Documentation: Card Overview renders 1`] = ` | |
<ul> | ||
<Card | ||
btnTxt="Button" | ||
footerLinkTxt="Come see what we're all about." | ||
footerLinkTxt="You wanna click this link?" | ||
footerTxt="This is some text that goes in the footer." | ||
highlightSubTitle="Outstanding balance" | ||
highlightTitle="725 NOK" | ||
icon="account_balance" | ||
imgSrc="https://picsum.photos/300" | ||
smallText="And the small text" | ||
text="This is the cards text" | ||
|
@@ -82,8 +85,11 @@ exports[`Documentation: Card Overview renders 1`] = ` | |
/> | ||
<Card | ||
btnTxt="Button" | ||
footerLinkTxt="Come see what we're all about." | ||
footerLinkTxt="You wanna click this link?" | ||
footerTxt="This is some text that goes in the footer." | ||
highlightSubTitle="[email protected]" | ||
highlightTitle="Bob Corlsan" | ||
icon="face" | ||
imgSrc="https://picsum.photos/300" | ||
smallText="And the small text" | ||
text="This is the cards text" | ||
|
@@ -92,8 +98,11 @@ exports[`Documentation: Card Overview renders 1`] = ` | |
/> | ||
<Card | ||
btnTxt="Button" | ||
footerLinkTxt="Come see what we're all about." | ||
footerLinkTxt="You wanna click this link?" | ||
footerTxt="This is some text that goes in the footer." | ||
highlightSubTitle="Complete" | ||
highlightTitle="75%" | ||
icon="verified_user" | ||
imgSrc="https://picsum.photos/300" | ||
smallText="And the small text" | ||
text="This is the cards text" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,31 +18,40 @@ const Overview = () => ( | |
type="default" | ||
title="Card default" | ||
imgSrc="https://picsum.photos/300" | ||
icon="account_balance" | ||
highlightTitle="725 NOK" | ||
highlightSubTitle="Outstanding balance" | ||
text="This is the cards text" | ||
smallText="And the small text" | ||
btnTxt="Button" | ||
footerTxt="This is some text that goes in the footer." | ||
footerLinkTxt="Come see what we're all about." | ||
footerLinkTxt="You wanna click this link?" | ||
/> | ||
<CardComponent | ||
type="brand" | ||
title="Card brand" | ||
imgSrc="https://picsum.photos/300" | ||
icon="face" | ||
highlightTitle="Bob Corlsan" | ||
highlightSubTitle="[email protected]" | ||
text="This is the cards text" | ||
smallText="And the small text" | ||
btnTxt="Button" | ||
footerTxt="This is some text that goes in the footer." | ||
footerLinkTxt="Come see what we're all about." | ||
footerLinkTxt="You wanna click this link?" | ||
/> | ||
<CardComponent | ||
type="light" | ||
title="Card light" | ||
imgSrc="https://picsum.photos/300" | ||
icon="verified_user" | ||
highlightTitle="75%" | ||
highlightSubTitle="Complete" | ||
text="This is the cards text" | ||
smallText="And the small text" | ||
btnTxt="Button" | ||
footerTxt="This is some text that goes in the footer." | ||
footerLinkTxt="Come see what we're all about." | ||
footerLinkTxt="You wanna click this link?" | ||
/> | ||
</ul> | ||
</div> | ||
|