import { ChevronDown } from 'lucide-react'; import { ComponentProps } from 'react'; import clsx from 'clsx'; import { Icon } from './Icon'; export function CollapseExpandButton({ onClick, isExpanded, ...props }: { isExpanded: boolean } & ComponentProps<'button'>) { return ( ); }