/* eslint-disable max-len */ import React from 'react'; type IconProps = { type: string; size?: number; color?: string; title?: string; classes?: string; } const Icon = ({ type, color = 'currentColor', size = 16, title = '', classes = '' }: IconProps) => { const xmlnsProps = { title, xmlns: 'http://www.w3.org/2000/svg', xmlnsXlink: 'http://www.w3.org/1999/xlink', preserveAspectRatio: 'xMidYMid meet' }; return ( {type === 'logo' && } {type === 'loading' && } {type === 'menu' && } {type === 'close' && } {type === 'download' && } {type === 'trash' && } {type === 'edit' && } {type === 'check' && } {type === 'error' && } {type === 'question' && } {type === 'caret-left' && } {type === 'caret-right' && } {type === 'caret-down' && } {type === 'caret-up' && } {type === 'search' && } {type === 'settings' && } {type === 'settings-alt' && } {type === 'logout' && } {type === 'reload' && } {type === 'dots' && } {type === 'hamburger' && } {type === 'star' && } {type === 'star-filled' && } {type === 'link' && } {type === 'link-alt' && } {type === 'clock' && } {type === 'sort' && } {type === 'desktop' && } {type === 'mobile' && } {type === 'tags' && } {type === 'filter' && } {type === 'idea' && } {type === 'tracking' && } {type === 'google' && } {type === 'adwords' && } {type === 'keywords' && } {type === 'integration' && } {type === 'cursor' && } {type === 'eye' && } {type === 'eye-closed' && } {type === 'target' && } {type === 'help' && } {type === 'date' && } {type === 'email' && } {type === 'scraper' && } {type === 'city' && } {type === 'research' && } {type === 'domains' && } {type === 'lock' && } ); }; export default Icon;