import Button from '@/app/components/base/button' import { RiHistoryLine } from '@remixicon/react' import React, { type FC } from 'react' import { useTranslation } from 'react-i18next' type EmptyProps = { onResetFilter: () => void } const Empty: FC = ({ onResetFilter, }) => { const { t } = useTranslation() return
{t('workflow.versionHistory.filter.empty')}
} export default React.memo(Empty)