import { Component, OnInit } from '@angular/core'; @Component({ selector: 'lib-button-round', templateUrl: './button-round.component.html', styleUrls: ['./button-round.component.css'] }) export class ButtonRoundComponent implements OnInit { constructor() { } ngOnInit() { } }