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

{props.title}

{props.description && (

{`${props.description.slice(0, 125)}${ props.description.length > 125 ? "..." : "" }`}

)}
); };