UNPKG

@hashicorp/design-system-components

Version:
23 lines (22 loc) 729 B
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import type { HdsIconSignature } from '../../icon'; import type { HdsInteractiveSignature } from '../../interactive'; export interface HdsSideNavListLinkSignature { Args: HdsInteractiveSignature['Args'] & { icon?: HdsIconSignature['Args']['name']; text?: string; badge?: string; count?: string; hasSubItems?: boolean; isActive?: boolean; }; Blocks: { default: []; }; Element: HdsInteractiveSignature['Element']; } declare const HdsSideNavListLink: import("@ember/component/template-only").TemplateOnlyComponent<HdsSideNavListLinkSignature>; export default HdsSideNavListLink;