'use client' import React from 'react' import Button from '@/app/components/base/button' import { useTranslation } from 'react-i18next' type SetURLProps = { repoUrl: string onChange: (value: string) => void onNext: () => void onCancel: () => void } const SetURL: React.FC = ({ repoUrl, onChange, onNext, onCancel }) => { const { t } = useTranslation() return ( <> onChange(e.target.value)} className='border-components-input-border-active bg-components-input-bg-active shadows-shadow-xs text-components-input-text-filled system-sm-regular flex grow items-center gap-[2px] self-stretch overflow-hidden text-ellipsis rounded-lg border p-2' placeholder='Please enter GitHub repo URL' />
) } export default SetURL