UNPKG

@hashicorp/design-system-components

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