import { IconCheck, IconCopy } from '@tabler/icons-react'; import { FC } from 'react'; type Props = { messagedCopied: boolean; copyOnClick: () => void; }; export const CopyButton: FC = ({ messagedCopied, copyOnClick }) => ( );