import ContentCopyIcon from "@mui/icons-material/ContentCopy"; import DoneIcon from "@mui/icons-material/Done"; import { IconButton, Tooltip, type SvgIconProps } from "@mui/material"; import { useClipboardCopy } from "ente-base/components/utils/hooks"; import { t } from "i18next"; interface CopyButtonProps { /** * The text to copy when the button is clicked. */ text: string; /** * The size of the icon. */ size?: SvgIconProps["fontSize"]; } export const CopyButton: React.FC = ({ text, size }) => { const [copied, handleClick] = useClipboardCopy(text); const Icon = copied ? DoneIcon : ContentCopyIcon; return ( ); };