import React, { type FC } from 'react' import { useTranslation } from 'react-i18next' import { RiLineHeight } from '@remixicon/react' import Tooltip from '@/app/components/base/tooltip' import { Collapse } from '@/app/components/base/icons/src/public/knowledge' type DisplayToggleProps = { isCollapsed: boolean toggleCollapsed: () => void } const DisplayToggle: FC = ({ isCollapsed, toggleCollapsed, }) => { const { t } = useTranslation() return ( ) } export default React.memo(DisplayToggle)