| 5 | import { Check, Copy } from "lucide-react"; |
| 6 | |
| 7 | interface CliCommandCardProps { |
| 8 | command: string; |
| 9 | } |
| 10 | |
| 11 | export function CliCommandCard({ command }: CliCommandCardProps) { |
| 12 | const [isCopied, setIsCopied] = useState(false); |
nothing calls this directly
no outgoing calls
no test coverage detected