Skip to content

Instantly share code, notes, and snippets.

@yokoishioka
Created March 4, 2020 06:41
Show Gist options
  • Save yokoishioka/5ca0a0b75d98011486adb791343ff404 to your computer and use it in GitHub Desktop.
Save yokoishioka/5ca0a0b75d98011486adb791343ff404 to your computer and use it in GitHub Desktop.
import { Component, Input } from '@angular/core';
@Component({
selector: 'ces-button',
templateUrl: './button.component.html',
styleUrls: [
'./button.component.scss'
]
})
export class ButtonComponent {
@Input() class:string;
@Input() disabled:boolean;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment