Last active
March 11, 2020 03:54
-
-
Save yokoishioka/e3b52a0347a61e542c2a22604cc97d24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, Input } from '@angular/core'; | |
@Component({ | |
selector: 'ces-svg', | |
template: ` | |
<img src="/assets/images/svgs/{{ type }}.svg" [alt]="type + ' icon'" [title]="title"> | |
`, | |
styleUrls: [ | |
'./svg.component.scss' | |
] | |
}) | |
export class SvgComponent { | |
@Input() type: string; | |
@Input() title: string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment