import React from 'react'; import { motion, AnimatePresence } from 'framer-motion'; import { LEAD_FORM_OPTIONS } from '../../data/mockStore'; import UrgencyPillSelector from './UrgencyPillSelector'; import LeadCustomSelect from './LeadCustomSelect'; // --------------------------------------------------------------------------- // Shared field primitives (local to Job section) // --------------------------------------------------------------------------- function FieldLabel({ children }) { return ( ); } function LeadTextarea({ label, value, onChange, placeholder, rows = 3 }) { return (
{label}