"use client"; import type { FC } from "react"; type TDeDupeIssueButtonLabelProps = { isOpen: boolean; buttonLabel: string; }; export const DeDupeIssueButtonLabel: FC = (props) => { const { isOpen, buttonLabel } = props; return <>; };