UNPKG

@hashicorp/design-system-components

Version:
23 lines (22 loc) 741 B
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import type { HdsIconSignature } from '../../icon'; import type { HdsInteractiveSignature } from '../../interactive'; 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: import("@ember/component/template-only").TemplateOnlyComponent<HdsAppSideNavListLinkSignature>; export default HdsAppSideNavListLink;