import React from 'react'; import { FormField, Input } from '@wix/design-system'; export interface FieldNameInputProps { label: string; value: string; onChange: (v: string) => void; onBlur?: () => void; error?: string; } export const FieldNameInput = ({ label, value, onChange, onBlur, error, }: FieldNameInputProps) => ( onChange(e.target.value)} onBlur={onBlur} /> );