import Vector from 'src/components/icons/Vector' import s from './ViewAllItem.module.scss' import Link from 'next/link' interface Props { className?: string children?: any link?: string } const ViewAllItem = ({ link }: Props) => { return(
View All
) } export default ViewAllItem