Skip to content

Commit

Permalink
feat: Add CreditCardLarge illus
Browse files Browse the repository at this point in the history
  • Loading branch information
zatteo committed Mar 13, 2024
1 parent 2e08cd1 commit ee84462
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
1 change: 1 addition & 0 deletions assets/icons/illus/credit-card-large.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion react/Icon/Readme.md
Expand Up @@ -616,6 +616,7 @@ import Icon from 'cozy-ui/transpiled/react/Icon'
import Typography from 'cozy-ui/transpiled/react/Typography'

import BottomSelectIcon from 'cozy-ui/transpiled/react/Icons/BottomSelect'
import CreditCardLargeIcon from 'cozy-ui/transpiled/react/Icons/CreditCardLarge'
import CheckWhiteIcon from 'cozy-ui/transpiled/react/Icons/CheckWhite'
import CloudBrokenIcon from 'cozy-ui/transpiled/react/Icons/CloudBroken'
import CloudSync2 from 'cozy-ui/transpiled/react/Icons/CloudSync2'
Expand Down Expand Up @@ -661,6 +662,7 @@ const icons = [
CozyIcon,
CozyLogoIcon,
CozyUpgradeIcon,
CreditCardLargeIcon,
DashWhiteIcon,
DeviceBrowserIcon,
DeviceLaptopIcon,
Expand Down Expand Up @@ -726,7 +728,7 @@ import Icon from 'cozy-ui/transpiled/react/Icon'
import Typography from 'cozy-ui/transpiled/react/Typography'
import Sprite from 'cozy-ui/transpiled/react/Icon/Sprite'

const availableIcons = ['bottom-select', 'check-white', 'cloud-broken', 'contacts', 'cozy-authentification', 'cozy-logo', 'cozy-upgrade', 'dash-white', 'device-browser', 'device-laptop', 'device-phone', 'device-tablet', 'file-type-audio', 'file-type-banking-account' , 'file-type-bin', 'file-type-code', 'file-type-files', 'file-type-folder', 'file-type-image', 'file-type-note', 'file-type-pdf', 'file-type-sheet', 'file-type-slide', 'file-type-text', 'file-type-video', 'file-type-zip', 'forbidden-sign', 'google', 'keychain', 'logout-large', 'papers', 'store', 'top-select', 'trash-duotone', 'cozy']
const availableIcons = ['account', 'bottom-select', 'check-white', 'cloud-broken', 'contacts', 'cozy-authentification', 'cozy-logo', 'cozy-upgrade', 'credit-card-large', 'dash-white', 'device-browser', 'device-laptop', 'device-phone', 'device-tablet', 'file-type-audio', 'file-type-banking-account' , 'file-type-bin', 'file-type-code', 'file-type-files', 'file-type-folder', 'file-type-image', 'file-type-note', 'file-type-pdf', 'file-type-sheet', 'file-type-slide', 'file-type-text', 'file-type-video', 'file-type-zip', 'forbidden-sign', 'google', 'keychain', 'logout-large', 'papers', 'store', 'top-select', 'trash-duotone', 'cozy']

;

Expand Down
18 changes: 18 additions & 0 deletions react/Icons/CreditCardLarge.jsx
@@ -0,0 +1,18 @@
// Automatically created, please run `scripts/generate-svgr-icon.sh assets/icons/illus/credit-card-large.svg` to regenerate;
import React from 'react'

function SvgCreditCardLarge(props) {
return (
<svg viewBox="0 0 32 32" fill="none" {...props}>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M2 5h28a2 2 0 012 2v18.23a2 2 0 01-2 2H2a2 2 0 01-2-2V7a2 2 0 012-2z"
fill="#B2D3FF"
/>
<path fill="#197BFF" d="M0 9.042h32v6.063H0z" />
</svg>
)
}

export default SvgCreditCardLarge

0 comments on commit ee84462

Please sign in to comment.