Skip to main content

Card Charge Summary

This section describes the BfmCardChargeSummaryComponent component.

Usage

You need to import it in your module and use it in your template.

card-charge-summary.component.ts
import { BfmCardChargeSummaryComponent } from '@celerofinancas/ui-charges';

@Component({
standalone: true,
selector: 'card-charge-summary',
imports: [BfmCardChargeSummaryComponent],
templateUrl: './card-charge-summary.component.html',
})
export class CardChargeSummaryComponent {}

Then, in your template, you can use the component like this:

card-charge-summary.component.html
<bfm-card-charge-summary
[paidTitle]="'Seu cliente vai pagar'"
[receivedTitle]="'Você vai receber'"
/>

Inputs

The BfmCardChargeSummaryComponent component has the following inputs:

paidTitle

Card Paid Charge Title

TypeDefault
string'Seu cliente vai pagar'

receivedTitle

Card Received Charge Title

TypeDefault
string'Você vai receber'

Events

The BfmCardChargeSummaryComponent component has no events.