| 3 | import { useState } from 'react' |
| 4 | |
| 5 | interface CodeBlockProps { |
| 6 | code: string |
| 7 | language?: string |
| 8 | label?: string |
| 9 | className?: string |
| 10 | /** terminal: macOS dots. editor: tab bar. inline: single-line pill */ |
| 11 | variant?: 'terminal' | 'editor' | 'inline' |
| 12 | } |
| 13 | |
| 14 | function ClipboardIcon() { |
| 15 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected