import Link from 'next/link' import { Icons } from 'components' const ArrowLink = props => { //? Props const { children, path } = props //? Render(s) return ( {children} ) } export default ArrowLink