improved AddLocation & AddMonth icons
This commit is contained in:
@@ -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<AddLocationButtonProps> = ({yearMonth}) =>
|
||||
<div className="card card-compact card-bordered bg-base-100 shadow-s my-1">
|
||||
<Link href={`/location/${ formatYearMonth(yearMonth) }/add`} className="card-body tooltip self-center" data-tip="Add a new billing location">
|
||||
<span className='grid self-center' data-tip="Add a new billing location">
|
||||
<PlusCircleIcon className="h-[1em] w-[1em] cursor-pointer text-4xl" />
|
||||
<span className='flex self-center' data-tip="Add a new billing location">
|
||||
<HomeIcon className="h-[1em] w-[1em] cursor-pointer text-4xl" />
|
||||
<PlusCircleIcon className="h-[1em] w-[1em] cursor-pointer text-xl text-green-500 ml-[-.6em] mt-[-.4em]" />
|
||||
</span>
|
||||
</Link>
|
||||
</div>;
|
||||
@@ -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<AddMonthButtonProps> = ({ yearMonth }) =>
|
||||
<div className="card card-compact shadow-s mb-4">
|
||||
<Link href={`/year-month/${formatYearMonth(yearMonth)}/add`} className='grid self-center tooltip' data-tip="Dodaj novi mjesec">
|
||||
<span className='grid self-center'>
|
||||
<PlusCircleIcon className="h-[1em] w-[1em] cursor-pointer text-4xl" />
|
||||
<span className='flex self-center'>
|
||||
<CalendarDaysIcon className="h-[1em] w-[1em] cursor-pointer text-4xl" />
|
||||
<PlusCircleIcon className="h-[1em] w-[1em] cursor-pointer text-xl text-green-500 ml-[-.4em] mt-[-.4em]" />
|
||||
</span>
|
||||
</Link>
|
||||
</div>;
|
||||
|
||||
Reference in New Issue
Block a user