diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts
index c9dc83a..4fdeef1 100644
--- a/src/components/fab/fab.ts
+++ b/src/components/fab/fab.ts
@@ -55,18 +55,25 @@ export class ZetaFab extends Flavored(BaseButton) {
@property({ type: String, reflect: true }) size: "small" | "large" = "small";
- private getLabel() {
- return this.label ? html`
${this.label}
` : nothing;
- }
protected render() {
return html`
- ${this.extended ? nothing : this.getLabel()}
`;
}
+ // private getLabel() {
+ // return this.label ? html`${this.label}
` : nothing;
+ // }
+ // protected render() {
+ // return html`
+ //
+ // ${this.extended ? nothing : this.getLabel()}
+ // `;
+ // }
}
declare global {