You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/lnd/wallet/wallet.component.ts

17 lines
317 B
TypeScript

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 {
public faWallet = faWallet;
constructor() {}
}