From aa6cc8714f0b78f3edfcdf95eeac6b4dad3909b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Dere=C5=BEi=C4=87?= Date: Tue, 13 Feb 2024 11:25:58 +0100 Subject: [PATCH] improved AddLocation & AddMonth icons --- app/ui/AddLocationButton.tsx | 7 ++++--- app/ui/AddMonthButton.tsx | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/app/ui/AddLocationButton.tsx b/app/ui/AddLocationButton.tsx index 1c200aa..f0a7ff2 100644 --- a/app/ui/AddLocationButton.tsx +++ b/app/ui/AddLocationButton.tsx @@ -1,4 +1,4 @@ -import { PlusCircleIcon } from "@heroicons/react/24/outline"; +import { PlusCircleIcon, HomeIcon } from "@heroicons/react/24/outline"; import { YearMonth } from "../lib/db-types"; import { formatYearMonth } from "../lib/format"; import Link from "next/link"; @@ -12,8 +12,9 @@ export interface AddLocationButtonProps { export const AddLocationButton:React.FC = ({yearMonth}) =>
- - + + +
; \ No newline at end of file diff --git a/app/ui/AddMonthButton.tsx b/app/ui/AddMonthButton.tsx index 7616b71..af8e0f9 100644 --- a/app/ui/AddMonthButton.tsx +++ b/app/ui/AddMonthButton.tsx @@ -1,4 +1,4 @@ -import { PlusCircleIcon } from "@heroicons/react/24/outline"; +import { PlusCircleIcon, CalendarDaysIcon } from "@heroicons/react/24/outline"; import React from "react"; import { formatYearMonth } from "../lib/format"; import { YearMonth } from "../lib/db-types"; @@ -11,8 +11,9 @@ export interface AddMonthButtonProps { export const AddMonthButton:React.FC = ({ yearMonth }) =>
- - + + +
;