import Link from "next/link" import { ChevronRightSmallIcon } from "@/components/Icons" import Caption from "@/components/TempDesignSystem/Text/Caption" import styles from "./chip.module.css" import type { LinkChipProps } from "./chip" export default function LinkChip({ url, title }: LinkChipProps) { return ( {title} ) }