Skip to main content

Onboarding Indicator

This section describes the BfmOnboardingIndicatorComponent component.

Composition

The BfmOnboardingIndicatorComponent is composed of the following components:

  • BfmWarningComponent - Warning component.

Usage

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

onboarding-indicator.component.ts
import { BfmOnboardingIndicatorComponent } from '@celerofinancas/ui-user-kit';

@Component({
standalone: true,
selector: 'onboarding-indicator',
imports: [BfmOnboardingIndicatorComponent],
templateUrl: './onboarding-indicator.component.html',
})
export class OnboardingIndicatorComponent {}

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

onboarding-indicator.component.html
<bfm-onboarding-indicator 
[company]="company"
/>

Inputs

The BfmOnboardingIndicatorComponent component has the following inputs:

company

Company data to be displayed

TypeDefault
Company from @celerofinancas/state-managementnull

Events

The BfmOnboardingIndicatorComponent component has no events.