Picsur/frontend/src/app/components/fab/normal/fab.component.ts
2022-12-25 22:28:53 +01:00

16 lines
395 B
TypeScript

import { Component, Input } from '@angular/core';
@Component({
selector: 'fab',
templateUrl: './fab.component.html',
})
export class FabComponent {
@Input('aria-label') ariaLabel: string = 'Floating Action Button';
@Input() icon: string = 'add';
@Input() color: string = 'primary';
@Input('tooltip') tooltip: string;
@Input() onClick: () => void = () => {};
constructor() {}
}