Skip to content

Commit

Permalink
feat: Add CozyAuthentification illustration
Browse files Browse the repository at this point in the history
  • Loading branch information
cballevre committed Jul 5, 2023
1 parent 4e2a854 commit a63249a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
1 change: 1 addition & 0 deletions assets/icons/illus/cozy-authentification.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 5 additions & 2 deletions react/Icon/Readme.md
Expand Up @@ -583,6 +583,8 @@ import CheckWhiteIcon from 'cozy-ui/transpiled/react/Icons/CheckWhite'
import DashWhiteIcon from 'cozy-ui/transpiled/react/Icons/DashWhite'
import KeychainIcon from 'cozy-ui/transpiled/react/Icons/Keychain'
import CozyUpgradeIcon from 'cozy-ui/transpiled/react/Icons/CozyUpgrade'
import CozyAuthentificationIcon from 'cozy-ui/transpiled/react/Icons/CozyAuthentification'


const icons = [
CozyIcon,
Expand Down Expand Up @@ -617,7 +619,8 @@ const icons = [
CheckWhiteIcon,
DashWhiteIcon,
KeychainIcon,
CozyUpgradeIcon
CozyUpgradeIcon,
CozyAuthentificationIcon
]

const wrapperStyle = {
Expand Down Expand Up @@ -657,7 +660,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 = ['cozy', 'cloud-broken', 'cozy-logo', 'device-laptop', 'device-phone', 'device-tablet', 'device-browser', 'file-type-audio', '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', 'file-type-banking-account' , 'forbidden-sign', 'google', 'logout-large', 'top-select', 'bottom-select', 'check-white', 'dash-white', 'keychain', 'contacts', 'papers', 'store', 'cozy-upgrade']
const availableIcons = ['cozy', 'cloud-broken', 'cozy-logo', 'device-laptop', 'device-phone', 'device-tablet', 'device-browser', 'file-type-audio', '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', 'file-type-banking-account' , 'forbidden-sign', 'google', 'logout-large', 'top-select', 'bottom-select', 'check-white', 'dash-white', 'keychain', 'contacts', 'papers', 'store', 'cozy-upgrade', 'cozy-authentification']

;

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

function SvgCozyAuthentification(props) {
return (
<svg viewBox="0 0 64 64" fill="none" {...props}>
<path
d="M0 35.333c0 9.819 7.96 17.778 17.778 17.778h28.444c9.819 0 17.778-7.96 17.778-17.778 0-8.705-6.258-15.95-14.52-17.48C47.95 9.591 40.706 3.333 32 3.333c-8.706 0-15.95 6.258-17.48 14.52C6.257 19.383 0 26.628 0 35.333z"
fill="#B3D3FF"
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M34.667 35.445A6.668 6.668 0 0032 22.667a6.667 6.667 0 00-2.667 12.778v5.888a2.667 2.667 0 105.334 0v-5.888z"
fill="#297EF2"
/>
</svg>
)
}

export default SvgCozyAuthentification

0 comments on commit a63249a

Please sign in to comment.