import PropTypes from "prop-types"
import React from 'react'
export interface IconProps {
style?: React.CSSProperties
size?: number | string
color?: string
width?: number | string
height?: number | string
}
export const IconMiniCheck = ({
style = {},
size,
color
}: IconProps) => {
return
}
IconMiniCheck.propTypes = {
color: PropTypes.any,
size: PropTypes.any,
style: PropTypes.object
}
export const IconLogoCMF = ({
style = {},
size,
color
}: IconProps) => (
)
export const IconQrCode = ({
style = {},
size = 68.056,
color
}: IconProps) => (
)
export const IconLogoCMFBlue = ({
width = 138.426,
height = 35.559,
...props
}: IconProps) => (
)
export const IconClose = ({
width = 56.923,
height = 56.923,
size,
color,
...props
}: IconProps) => (
)
IconClose.propTypes = {
color: PropTypes.string,
height: PropTypes.number,
size: PropTypes.any,
width: PropTypes.number
}
export const IconMainLogo = ({
size,
height = 53.181,
width = 40.828,
...props
}: IconProps) => (
)
export const IconStrokeLogo = ({
size,
height,
width,
...props
}: IconProps) => (
)
IconStrokeLogo.propTypes = {
height: PropTypes.any,
size: PropTypes.any,
width: PropTypes.any
}