UNPKG

@hashicorp/design-system-components

Version:
17 lines (16 loc) 467 B
/** * Copyright IBM Corp. 2021, 2025 * SPDX-License-Identifier: MPL-2.0 */ import Component from '@glimmer/component'; import type HdsIntlService from '../../../services/hds-intl.ts'; export interface HdsDismissButtonSignature { Args: { ariaLabel?: string; }; Element: HTMLButtonElement; } export default class HdsDismissButton extends Component<HdsDismissButtonSignature> { readonly hdsIntl: HdsIntlService; get ariaLabel(): string; }