-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mercado Pago
committed
Sep 11, 2024
1 parent
d57ee4e
commit cba09d4
Showing
151 changed files
with
12,768 additions
and
10,666 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,5 @@ | ||
const CheckoutNotice = ({ message, src, icon, footerText }) => ( | ||
<checkout-notice message={message} src={src} icon={icon} footer-text={footerText} /> | ||
); | ||
|
||
export default CheckoutNotice; |
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,5 @@ | ||
const InputCode = ({ label, src, emptyErrorMessage, invalidErrorMessage, tooltipText }) => ( | ||
<input-code label={label} src={src} empty-error-message={emptyErrorMessage} invalid-error-message={invalidErrorMessage} tooltip-text={tooltipText} /> | ||
); | ||
|
||
export default InputCode; |
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,5 @@ | ||
const InputField = ({ labelMessage, emptyErrorMessage, invalidErrorMessage }) => ( | ||
<input-field label-message={labelMessage} empty-error-message={emptyErrorMessage} invalid-error-message={invalidErrorMessage} /> | ||
); | ||
|
||
export default InputField; |
Oops, something went wrong.