remove remaining pill styles

This commit is contained in:
Alejandro Gomez
2023-01-19 12:14:41 +01:00
parent 00b54d6641
commit fb60572954
9 changed files with 46 additions and 11 deletions

View File

@ -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;