"use client"; interface PriceFieldProps { label: string; value: string; onChange: (v: string) => void; placeholder?: string; } export function PriceField({ label, value, onChange, placeholder = "0" }: PriceFieldProps) { const raw = value.replace(/\s*BYN\s*$/i, "").trim(); return (