1 import { Component, ContentChild, TemplateRef, ViewChild } from '@angular/core';
2 import { TearsheetStep } from '../../models/tearsheet-step';
5 selector: 'cd-tearsheet-step',
7 templateUrl: './tearsheet-step.component.html',
8 styleUrls: ['./tearsheet-step.component.scss']
10 export class TearsheetStepComponent {
11 @ViewChild(TemplateRef, { static: true })
12 template!: TemplateRef<any>;
14 @ContentChild('tearsheetStep')
15 stepComponent!: TearsheetStep;