UNPKG

@hashicorp/design-system-components

Version:
20 lines (19 loc) 451 B
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import Component from '@glimmer/component'; export interface HdsDismissButtonSignature { Args: { ariaLabel?: string; }; Element: HTMLButtonElement; } export default class HdsDismissButton extends Component<HdsDismissButtonSignature> { /** * @param ariaLabel * @type {string} * @default 'Dismiss' */ get ariaLabel(): string; }