2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-11 13:10:41 +00:00
RTL/src/app/lnd/wallet/wallet.component.ts

17 lines
317 B
TypeScript
Raw Normal View History

import { Component } from '@angular/core';
import { faWallet } from '@fortawesome/free-solid-svg-icons';
@Component({
selector: 'rtl-wallet',
templateUrl: './wallet.component.html',
styleUrls: ['./wallet.component.scss']
})
export class WalletComponent {
2021-08-28 21:03:18 +00:00
public faWallet = faWallet;
constructor() {}
}