remove remaining pill styles
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
import "./ZapButton.css";
|
||||
import { faBolt } from "@fortawesome/free-solid-svg-icons";
|
||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||
import { useState } from "react";
|
||||
@ -14,7 +15,7 @@ const ZapButton = ({ pubkey }: { pubkey: HexKey }) => {
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="pill" onClick={(e) => setZap(true)}>
|
||||
<div className="zap-button" onClick={(e) => setZap(true)}>
|
||||
<FontAwesomeIcon icon={faBolt} />
|
||||
</div>
|
||||
<LNURLTip svc={svc} show={zap} onClose={() => setZap(false)} />
|
||||
@ -22,4 +23,4 @@ const ZapButton = ({ pubkey }: { pubkey: HexKey }) => {
|
||||
)
|
||||
}
|
||||
|
||||
export default ZapButton;
|
||||
export default ZapButton;
|
||||
|
Reference in New Issue
Block a user