"use client"; import { PrinterIcon } from '@heroicons/react/24/outline'; import { useTranslations } from 'next-intl'; import { YearMonth } from '../lib/db-types'; export interface PrintButtonProps { yearMonth: YearMonth; } export const PrintButton: React.FC = ({ yearMonth }) => { const t = useTranslations("home-page.month-card"); const handlePrintClick = () => { window.open(`/print/${yearMonth.year}/${yearMonth.month}`, '_blank'); }; return (
); };