/** * External dependencies */ import React from '@wordpress/element'; import { external, Icon } from '@wordpress/icons'; import { Link } from '@woocommerce/components'; import { Text } from '@woocommerce/experimental'; /** * Internal dependencies */ import './style.scss'; export const QuickLink = ( { icon, title, href, linkType, onClick } ) => { const isExternal = linkType === 'external'; return (
{ title } { isExternal && }
); };