import Link from "next/link"; import { Chip } from "#/components/Chip/Chip"; import Image from "next/image"; export const CollectionLink = (props: any) => { return (
{""}
{props.comment_count && ( )} {props.is_private && (
)} {props.is_favorite && (
)}

{props.title}

{props.description}

); };