-
Notifications
You must be signed in to change notification settings - Fork 9
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
Showing
102 changed files
with
3,319 additions
and
1,513 deletions.
There are no files selected for viewing
16 changes: 0 additions & 16 deletions
16
web-components/src/components/DenomIconWithCurrency/DenomIconWithCurrency.constants.ts
This file was deleted.
Oops, something went wrong.
29 changes: 0 additions & 29 deletions
29
web-components/src/components/DenomIconWithCurrency/DenomIconWithCurrency.stories.tsx
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
web-components/src/components/DenomIconWithCurrency/DenomIconWithCurrency.test.tsx
This file was deleted.
Oops, something went wrong.
33 changes: 0 additions & 33 deletions
33
web-components/src/components/DenomIconWithCurrency/DenomIconWithCurrency.tsx
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,5 @@ Default.args = { | |
root: '', | ||
label: '', | ||
}, | ||
bodyTexts: { prefinance: 'prefinance' }, | ||
}; |
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
5 changes: 2 additions & 3 deletions
5
web-components/src/components/SupCurrencyAndAmount/SupCurrencyAndAmount.test.tsx
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
2 changes: 0 additions & 2 deletions
2
web-components/src/components/cards/OrderSummaryCard/OrderSummaryCard.constants.tsx
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
web-components/src/components/cards/OrderSummaryCard/OrderSummaryCard.mock.ts
This file was deleted.
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
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 |
---|---|---|
@@ -1,29 +1,24 @@ | ||
/* eslint-disable lingui/no-unlocalized-strings */ | ||
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon'; | ||
import React from 'react'; | ||
|
||
interface IconProps extends SvgIconProps {} | ||
|
||
export default function CreditCardIcon({ | ||
sx = [], | ||
...props | ||
}: IconProps): JSX.Element { | ||
export default function CreditCardIcon( | ||
props: React.SVGProps<SVGSVGElement>, | ||
): JSX.Element { | ||
return ( | ||
<SvgIcon | ||
<svg | ||
data-testid="CreditCardIcon" | ||
xmlns="http://www.w3.org/2000/svg" | ||
viewBox="0 0 29 16" | ||
sx={[{ fill: 'none' }, ...(Array.isArray(sx) ? sx : [sx])]} | ||
width="16" | ||
height="16" | ||
viewBox="0 0 16 16" | ||
fill="none" | ||
{...props} | ||
> | ||
<g id="icon/card"> | ||
<path | ||
id="Vector" | ||
fill-rule="evenodd" | ||
clip-rule="evenodd" | ||
d="M16 4H0V3.25C0 2.56 0.448 2 1 2H15C15.552 2 16 2.56 16 3.25V4ZM16 6.5V13C16 13.2652 15.8946 13.5196 15.7071 13.7071C15.5196 13.8946 15.2652 14 15 14H1C0.734784 14 0.48043 13.8946 0.292893 13.7071C0.105357 13.5196 0 13.2652 0 13V6.5H16ZM4 10C3.73478 10 3.48043 10.1054 3.29289 10.2929C3.10536 10.4804 3 10.7348 3 11C3 11.2652 3.10536 11.5196 3.29289 11.7071C3.48043 11.8946 3.73478 12 4 12H5C5.26522 12 5.51957 11.8946 5.70711 11.7071C5.89464 11.5196 6 11.2652 6 11C6 10.7348 5.89464 10.4804 5.70711 10.2929C5.51957 10.1054 5.26522 10 5 10H4Z" | ||
fill="#4FB573" | ||
/> | ||
</g> | ||
</SvgIcon> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M16 4H0V3.25C0 2.56 0.448 2 1 2H15C15.552 2 16 2.56 16 3.25V4ZM16 6.5V13C16 13.2652 15.8946 13.5196 15.7071 13.7071C15.5196 13.8946 15.2652 14 15 14H1C0.734784 14 0.48043 13.8946 0.292893 13.7071C0.105357 13.5196 0 13.2652 0 13V6.5H16ZM4 10C3.73478 10 3.48043 10.1054 3.29289 10.2929C3.10536 10.4804 3 10.7348 3 11C3 11.2652 3.10536 11.5196 3.29289 11.7071C3.48043 11.8946 3.73478 12 4 12H5C5.26522 12 5.51957 11.8946 5.70711 11.7071C5.89464 11.5196 6 11.2652 6 11C6 10.7348 5.89464 10.4804 5.70711 10.2929C5.51957 10.1054 5.26522 10 5 10H4Z" | ||
fill="currentColor" | ||
/> | ||
</svg> | ||
); | ||
} |
Oops, something went wrong.