@sandlada/mdc
Version:
@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.
29 lines • 731 B
TypeScript
import { BaseExtendedFab } from './base-extended-fab';
declare global {
interface HTMLElementTagNameMap {
"mdc-fab": MDCFab;
}
}
/**
* Fab provides a label and an icon.
*
* Note that the tag must be wrapped with a span or div tag.
* The label is not displayed by default, and the label is displayed through the extended attribute:
*
* @example
* ```html
* <mdc-fab variant="primary" extended>
* <span>FAB</span>
* </mdc-fab>
* ```
*
* @version
* Material Design 3 - Expressive
*
* @link
* https://m3.material.io/components/floating-action-button/overview
*/
export declare class MDCFab extends BaseExtendedFab {
static styles: import("lit").CSSResult[];
}
//# sourceMappingURL=fab.d.ts.map