"use client"; import { DatePicker } from "@/components/ui/date-picker"; import { Label } from "@/components/ui/label"; import { cn } from "@/lib/utils/ui"; import type { BoletoFieldsSectionProps } from "./lancamento-dialog-types"; export function BoletoFieldsSection({ formState, onFieldChange, showPaymentDate, }: BoletoFieldsSectionProps) { return (
onFieldChange("dueDate", value)} placeholder="Selecione o vencimento" />
{showPaymentDate ? (
onFieldChange("boletoPaymentDate", value)} placeholder="Selecione a data de pagamento" />
) : null}
); }