interface InputErrorProps { message?: string; } export function InputError({ message }: InputErrorProps) { if (!message) { return null; } return