@hashicorp/design-system-components
Version:
Helios Design System Components
18 lines (17 loc) • 423 B
TypeScript
/**
* Copyright IBM Corp. 2021, 2025
* 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> {
get ariaLabel(): string;
}