mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
27 lines
569 B
TypeScript
27 lines
569 B
TypeScript
import { Component, Input, Output, EventEmitter } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'storybook-button-component',
|
|
template: ` <button (click)="onClick.emit($event)">{{ text }}</button> `,
|
|
styles: [
|
|
`
|
|
button {
|
|
border: 1px solid #eee;
|
|
border-radius: 3px;
|
|
background-color: #ffffff;
|
|
cursor: pointer;
|
|
font-size: 15px;
|
|
padding: 3px 10px;
|
|
margin: 10px;
|
|
}
|
|
`,
|
|
],
|
|
})
|
|
export default class ButtonComponent {
|
|
@Input()
|
|
text = '';
|
|
|
|
@Output()
|
|
onClick = new EventEmitter<any>();
|
|
}
|