diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-01-21 13:06:19 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-01-21 13:06:19 +0700 |
| commit | 50d7157be3871f671ddfabc699a21733fa74a1b8 (patch) | |
| tree | ef2b00614dde7ec65129017a0835310615b545bf /src/components | |
| parent | 6b4371c096030354f09465e3773200529cf727d1 (diff) | |
Detail transaction page
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/AppBar.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/AppBar.js b/src/components/AppBar.js index aeffdf12..4cac8ce5 100644 --- a/src/components/AppBar.js +++ b/src/components/AppBar.js @@ -1,4 +1,4 @@ -import { ArrowLeftIcon, HeartIcon, HomeIcon } from "@heroicons/react/24/outline"; +import { ChevronLeftIcon, HeartIcon, HomeIcon } from "@heroicons/react/24/outline"; import Head from "next/head"; import { useRouter } from "next/router"; import { useEffect, useState } from "react"; @@ -35,7 +35,7 @@ const AppBar = ({ title }) => { {/* --- Start Title */} <div className="flex items-center"> <button type="button" onClick={handleBackButtonClick} className="text-gray_r-12 px-4 py-5"> - <ArrowLeftIcon className="w-6 stroke-2"/> + <ChevronLeftIcon className="w-6 stroke-2"/> </button> <h1 className="text-h-md">{ title }</h1> </div> |
