import React from 'react'; import { ChevronDownIcon, ChevronRightIcon } from "@heroicons/react/24/outline"; interface CollapsibleSectionProps { title: string; isExpanded: boolean; onToggle: () => void; children: React.ReactNode; className?: string; } const CollapsibleSection: React.FC = ({ title, isExpanded, onToggle, children, className = "" }) => { return (
{children}
); }; export default CollapsibleSection;