"use client" import { Feedback as UiFeedback, FeedbackProps as UiFeedbackProps, formatReportLink, } from "docs-ui" import { usePathname } from "next/navigation" import { absoluteUrl } from "@/lib/absolute-url" import clsx from "clsx" export type FeedbackProps = { title: string } & Partial export const Feedback = ({ title, ...props }: FeedbackProps) => { const pathname = usePathname() return ( ) }