import {Form, Input} from 'antd' import {t} from 'ttag' import {SearchOutlined} from '@ant-design/icons' import React from 'react' export interface FieldType { ldhName: string } export function DomainSearchBar({onFinish, initialValue}: { onFinish: (values: FieldType) => void, initialValue?: string }) { return (
name='ldhName' initialValue={initialValue} rules={[{ required: true, message: t`Required` }, { pattern: /^(?=.*\.)?\S*[^.\s]$/, message: t`This domain name does not appear to be valid`, max: 63, min: 2 }]} > } placeholder='example.com' autoComplete='off' autoFocus /> ) }