import PropTypes from 'prop-types' import React from 'react' import { getGlobalStyle } from '../../../../helpers' export interface IconProps { style?: React.CSSProperties size?: number | string color?: string width?: number | string height?: number | string } export const IconDragHandle: React.FC = ({ style = {}, size = 24, color }) => ( ) export const IconMiniCheck: React.FC = ({ style = {}, size, color }: IconProps) => { return } IconMiniCheck.propTypes = { color: PropTypes.any, size: PropTypes.any, style: PropTypes.object } export const IconLogoCMF: React.FC = ({ style = {}, size, color }: IconProps) => ( ) export const IconQrCode: React.FC = ({ style = {}, size = 68.056, color }: IconProps) => ( ) export const IconLogoCMFBlue: React.FC = ({ width = 138.426, height = 35.559, ...props }: IconProps) => ( ) export const IconClose: React.FC = ({ 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: React.FC = ({ size, height = 53.181, width = 40.828, ...props }: IconProps) => ( ) export const IconStrokeLogo: React.FC = ({ size, height, width, ...props }: IconProps) => ( ) IconStrokeLogo.propTypes = { height: PropTypes.any, size: PropTypes.any, width: PropTypes.any } export const IconUpTrend: React.FC = ({ size = 24, color }) => ( )