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