You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/components/Code/Code.tsx

38 lines
910 B

import { Check, Copy } from 'lucide-react';
import { Button } from '@@/buttons';
import { useCopy } from '@@/buttons/CopyButton/useCopy';
import { Icon } from '@@/Icon';
import styles from './Code.module.css';
interface Props {
showCopyButton?: boolean;
children: string;
}
export function Code({ children, showCopyButton }: Props) {
const { handleCopy, copiedSuccessfully } = useCopy(children);
return (
<div className={styles.root}>
<code className={styles.code}>{children}</code>
{showCopyButton && (
<Button
color="link"
className={styles.copyButton}
onClick={handleCopy}
data-cy="code-copy-button"
>
<Icon
icon={copiedSuccessfully ? Check : Copy}
className="!ml-1"
mode={copiedSuccessfully ? 'success' : undefined}
/>
</Button>
)}
</div>
);
}