@Component({
  selector: 'carousel',
  template: `
    <section class="carousel-wrapper" [ngStyle]="carouselWrapperStyle">
      ...
    </section>
    <div *ngIf="showControls">
      <button (click)="next()">Next</button>
      <button (click)="prev()">Previous</button>
    </div>
  `,
  styles: [`...`]
})
export class CarouselComponent implements AfterViewInit {
 }