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