kreirane komponente

This commit is contained in:
2024-01-04 10:30:43 +01:00
parent e1a225b91b
commit b653ce40bc
11 changed files with 191 additions and 99 deletions

View File

@@ -0,0 +1,9 @@
import { PlusCircleIcon } from "@heroicons/react/24/outline";
export interface AddMonthButtonProps {
}
export const AddMonthButton:FC<AddMonthButtonProps> = () =>
<span className='grid self-center' data-tip="Dodaj novi mjesec">
<PlusCircleIcon className="h-[1em] w-[1em] cursor-pointer text-4xl" />
</span>