Skip to content

Commit

Permalink
BREAKING CHANGE
Browse files Browse the repository at this point in the history
  • Loading branch information
DE7924 committed Dec 4, 2024
1 parent 5724312 commit 41baea6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/fab/fab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ export class ZetaFab extends Flavored(BaseButton) {
@property({ type: String, reflect: true }) size: "small" | "large" = "small";

private getLabel() {
return this.label ? html`<div class="label">${this.label}</div>` : nothing;
// return this.label ? html`<div class="label">${this.label}</div>` : nothing;
return nothing;
}
protected render() {
return html`
Expand Down

0 comments on commit 41baea6

Please sign in to comment.