Web component for trigger payment request through WebLN protocol
npm install pay-with-ln

A simple Web Component button that giving you abillity to trigger LND payment request through webln provider.
- Put a script tag in the head of your index.html
```
src='https://unpkg.com/pay-with-ln@0.0.1/dist/pay-with-ln.js'
integrity="sha384-0gE98IqUZdWHtdgtLOnon/9r/4abSzW18MBIYvk58FWgOGLgtZT3XEnB1GcpA3Fy"
crossorigin="anonymous">
- Then you can use the element anywhere in your template, JSX, html etc
Then add this to your html/jsx file (replace payment-request data with your invoice)
``
:root {
--pay-with-ln-color: #40a9ff;
--pay-with-ln-active-color: #ffdd57;
--pay-with-ln-text-color: white;
--pay-with-ln-ative-text-color: red;
}
``