UNPKG

@hashicorp/design-system-components

Version:
24 lines (23 loc) 790 B
/** * Copyright IBM Corp. 2021, 2025 * SPDX-License-Identifier: MPL-2.0 */ import type { TemplateOnlyComponent } from '@ember/component/template-only'; import type { HdsIconSignature } from '../../icon/index'; import type { HdsInteractiveSignature } from '../../interactive/index'; export interface HdsAppSideNavListLinkSignature { Args: HdsInteractiveSignature['Args'] & { icon?: HdsIconSignature['Args']['name']; text?: string; badge?: string; count?: string; hasSubItems?: boolean; isActive?: boolean; }; Blocks: { default: []; }; Element: HdsInteractiveSignature['Element']; } declare const HdsAppSideNavListLink: TemplateOnlyComponent<HdsAppSideNavListLinkSignature>; export default HdsAppSideNavListLink;