/** * Included Section Component * Handles: What's included/excluded at trip level */ import React from "react"; import { CheckSquare, Plus, X, AlertCircle } from "lucide-react"; import { TripFormSectionProps } from "../types"; import { SectionHeader } from "../shared/SectionHeader"; import { Button } from "../../ui/button"; import { Input } from "../../ui/input"; import { Card, CardContent } from "../../ui/card"; import { Badge } from "../../ui/badge"; import { __ } from "../../../lib/i18n"; // Custom Textarea component since it doesn't exist in UI const Textarea: React.FC<{ value: string; onChange: (e: any) => void; placeholder?: string; rows?: number; className?: string; }> = ({ value, onChange, placeholder, rows = 3, className = "" }) => (