"use client"; import { InboxStackIcon, Square3Stack3DIcon } from '@heroicons/react/24/outline'; import { useTranslations } from 'next-intl'; import { YearMonth } from '../../../../../lib/db-types'; import Link from 'next/link'; export interface MultiBillEditButtonProps { yearMonth: YearMonth; className?: string; } export const MultiBillEditButton: React.FC = ({ yearMonth, className }) => { const t = useTranslations("home-page.multi-bill-edit-button"); return (
{t("tooltip")}
); };