10 lines
313 B
TypeScript
10 lines
313 B
TypeScript
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>
|