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