'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='shadows-shadow-xs system-sm-regular flex grow items-center gap-[2px] self-stretch overflow-hidden text-ellipsis rounded-lg border border-components-input-border-active bg-components-input-bg-active p-2 text-components-input-text-filled' placeholder='Please enter GitHub repo URL' />
) } export default SetURL