import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'cm-button-doc-3', templateUrl: './button-doc-3.component.html', styleUrls: ['./button-doc-3.component.css'] }) export class ButtonDoc3Component implements OnInit, OnDestroy { size = 'default'; constructor() { } ngOnInit() { } ngOnDestroy(){ } }