UNPKG

@sandlada/mdc

Version:

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

16 lines 450 B
/** * @license * Copyright 2026 Kai-Orion & Sandlada * SPDX-License-Identifier: MIT */ import type { LitElement } from 'lit'; import type { IAttachable } from '../../utils'; export interface IFocusRing extends LitElement, IAttachable { focused: boolean; inward: boolean; animationDisabled: boolean; disabled: boolean; ignoreGlobalConfig: boolean; shapeInherit: boolean; } //# sourceMappingURL=focus-ring.interface.d.ts.map