import { ChevronDownIcon, ChevronUpIcon } from "@heroicons/react/24/outline"; type Props = { title: string; expanded: boolean; onClick: () => void; }; const ExpandableHeader: React.FC = ({ title, expanded, onClick }) => ( ); export default ExpandableHeader;