UNPKG

@hashicorp/design-system-components

Version:
23 lines (22 loc) 848 B
/** * Copyright IBM Corp. 2021, 2025 * SPDX-License-Identifier: MPL-2.0 */ import type { TemplateOnlyComponent } from '@ember/component/template-only'; import type { HdsInteractiveSignature } from '../interactive/index'; import type { HdsLinkColors, HdsLinkIconPositions } from '../link/types.ts'; import type { HdsLinkInlineSignature } from '../link/inline'; import type { HdsIconSignature } from '../icon/index'; export interface HdsAppFooterLinkSignature { Args: HdsInteractiveSignature['Args'] & { color?: HdsLinkColors; icon?: HdsIconSignature['Args']['name']; iconPosition?: HdsLinkIconPositions; }; Blocks: { default: []; }; Element: HdsLinkInlineSignature['Element']; } declare const HdsAppFooterLink: TemplateOnlyComponent<HdsAppFooterLinkSignature>; export default HdsAppFooterLink;