import { ChevronDown, ChevronUp } from "lucide-react"; import { Button } from "@/src/components/ui/button"; export const ExpandListButton = ({ isExpanded, setExpanded, totalLength, maxLength, expandText = "See more", }: { isExpanded: boolean; setExpanded: (isExpanded: boolean) => void; totalLength: number; maxLength: number; expandText?: string; }) => { if (totalLength <= maxLength) { return null; } return ( ); };