"use client" import { cn } from "@mdxui/primitives/lib/utils" import { Button } from "@mdxui/primitives/button" import { MdOutlineFeedback } from "react-icons/md" import type { ComponentProps } from "react" interface FeedbackTriggerProps extends ComponentProps { label?: string } export function FeedbackTrigger({ label, className, ...props }: FeedbackTriggerProps) { return ( ) }