Skip to content

Commit

Permalink
Add a tiny rabbit icon to priority
Browse files Browse the repository at this point in the history
  • Loading branch information
KaffinPX committed Jan 25, 2025
1 parent 6483c93 commit 3860e16
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/pages/Wallet/Send/Creation.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useCallback, useState } from "react"
import { SendIcon } from "lucide-react"
import { RabbitIcon, SendIcon } from "lucide-react"
import { Output } from "./Outputs"
import { Input } from "@/provider/protocol"
import useKaspa from "@/hooks/useKaspa"
Expand Down Expand Up @@ -27,8 +27,11 @@ export default function Creation ({ inputs, outputs, setTransactions }: {

return (
<>
<div className="flex flex-row items-center gap-1 p-1">
<p className="font-semibold">Priority {feeRate !== 1 ? `(${feeRate})` : ""}</p>
<div className="flex flex-row items-center gap-1">
<div className="flex flex-col items-center">
<RabbitIcon size={12}/>
<p className="font-semibold">Priority {feeRate !== 1 ? `(${feeRate})` : ""}</p>
</div>
<form className="filter">
<input className="btn btn-xs btn-square" type="reset" value="×" onChange={handleFeeChange} />
<input className="btn btn-xs btn-error" type="radio" name="fee" aria-label="Slow" onChange={handleFeeChange} />
Expand Down

0 comments on commit 3860e16

Please sign in to comment.