Skip to content

Instantly share code, notes, and snippets.

@yokoishioka
Last active March 11, 2020 03:54
Show Gist options
  • Save yokoishioka/e3b52a0347a61e542c2a22604cc97d24 to your computer and use it in GitHub Desktop.
Save yokoishioka/e3b52a0347a61e542c2a22604cc97d24 to your computer and use it in GitHub Desktop.
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