"use client"; import { Label } from "@/components/ui/label"; import { DatePicker } from "@/components/ui/date-picker"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/components/ui/select"; import { CurrencyInput } from "@/components/ui/currency-input"; import { CalculatorDialogButton } from "@/components/calculadora/calculator-dialog"; import { RiCalculatorLine } from "@remixicon/react"; import { EstabelecimentoInput } from "../../shared/estabelecimento-input"; import type { BasicFieldsSectionProps } from "./lancamento-dialog-types"; export function BasicFieldsSection({ formState, onFieldChange, estabelecimentos, monthOptions, }: BasicFieldsSectionProps) { return ( <>