import CopyButton from '@/components/ui/CopyButton' interface WorkerCommandLineProps { command: string comment?: string } export const WorkerCommandLine = ({ command, comment }: WorkerCommandLineProps) => (
{comment &&

{`> ${comment}`}

}
$ {command}
)