import React from 'react' import cn from 'classnames' import { Icon } from 'UI'; function TextLink({ target = '_blank', href = '', icon = '', label='', className = '' }) { return ( { icon && } {label} ) } export default TextLink