| 8 | import EditorTooltip from "../EditorTooltip"; |
| 9 | import useCheckViewport from "@/hooks/useCheckViewport"; |
| 10 | interface CopyButtonProps { |
| 11 | text: string; |
| 12 | sx: object; |
| 13 | } |
| 14 | |
| 15 | const CopyButton: React.FC<CopyButtonProps> = ({ sx, text }) => { |
| 16 | const [copied, setCopied] = React.useState(false); |
nothing calls this directly
no outgoing calls
no test coverage detected