import { ActionIcon, CopyButton, Tooltip } from "@mantine/core"; import { IconCheck, IconCopy } from "@tabler/icons-react"; interface CopyIconButtonProps { value: string; tooltipLabel?: string; } export default function CopyIconButton({ value, tooltipLabel = "Copy", }: CopyIconButtonProps) { return ( {({ copied, copy }) => ( {copied ? : } )} ); }