UNPKG

@sandlada/mdc

Version:

@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.

24 lines 714 B
import { type FormSubmitter, type FormSubmitterType } from '../../utils/controller/form-submitter'; import { BaseIconButton } from './base-icon-button'; declare global { interface HTMLElementTagNameMap { "mdc-icon-button": MDCIconButton; } } /** * @version * Material Design 3 - Expressive * * @link * https://m3.material.io/components/icon-buttons/specs */ export declare class MDCIconButton extends BaseIconButton implements FormSubmitter { static readonly formAssociated = true; get name(): string; set name(name: string); get form(): HTMLFormElement | null; type: FormSubmitterType; value: string; disabled: boolean; } //# sourceMappingURL=icon-button.d.ts.map