Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
spacer.component.ts 310 B
Newer Older
import {Component, Input} from '@angular/core';
Joze RIHTARSIC's avatar
Joze RIHTARSIC committed

@Component({
  selector: 'tool-button-spacer',
Joze RIHTARSIC's avatar
Joze RIHTARSIC committed
  template:
    `<span [ngClass]="vertical?'vertical-spacer':'horizontal-spacer'">&nbsp;</span>
Joze RIHTARSIC's avatar
Joze RIHTARSIC committed
    `
})
export class SpacerComponent {
Joze RIHTARSIC's avatar
Joze RIHTARSIC committed
}