@sandlada/mdc
Version:
@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.
22 lines • 735 B
TypeScript
/**
* @license
* Copyright 2025 Kai-Orion & Sandlada
* SPDX-License-Identifier: MIT
*/
import { LitElement, type TemplateResult } from 'lit';
export declare abstract class BaseMDCToolbar extends LitElement {
color: 'standard' | 'vibrant';
direction: 'vertical' | 'horizonal';
protected hasFab: boolean;
protected handleFabSlotChange(e: Event): void;
protected getRenderClasses(): {
[]: boolean;
container: boolean;
'has-fab': boolean;
};
protected renderFabSlot(): TemplateResult<1>;
protected renderBackground(): TemplateResult<1>;
protected renderContent(): TemplateResult<1>;
protected render(): TemplateResult;
}
//# sourceMappingURL=BaseToolbar.d.ts.map