@hashicorp/design-system-components
Version:
Helios Design System Components
23 lines (22 loc) • 512 B
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import Component from '@glimmer/component';
export interface HdsBreadcrumbTruncationSignature {
Args: {
ariaLabel?: string;
};
Blocks: {
default: [];
};
Element: HTMLLIElement;
}
export default class HdsBreadcrumbTruncation extends Component<HdsBreadcrumbTruncationSignature> {
/**
* @param ariaLabel
* @type {string}
* @default 'show more'
*/
get ariaLabel(): string;
}