@hashicorp/design-system-components
Version:
Helios Design System Components
23 lines (22 loc) • 729 B
TypeScript
/**
* 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;