UNPKG

@hashicorp/design-system-components

Version:
18 lines (17 loc) 563 B
/** * Copyright IBM Corp. 2021, 2025 * SPDX-License-Identifier: MPL-2.0 */ import Component from '@glimmer/component'; import type { HdsTextBodySignature } from '../../text/body'; import type { HdsBadgeSignature } from '../../badge/index'; export interface HdsFormIndicatorSignature { Args: { isOptional?: boolean; isRequired?: boolean; }; Element: HdsTextBodySignature['Element'] | HdsBadgeSignature['Element']; } export default class HdsFormIndicator extends Component<HdsFormIndicatorSignature> { get classNames(): string; }