UNPKG

@hashicorp/design-system-components

Version:
20 lines (19 loc) 561 B
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import Component from '@glimmer/component'; import type { HdsCodeBlockTitleTags } from './types'; import type { HdsTextBodySignature } from '../text/body'; export interface HdsCodeBlockTitleSignature { Args: { tag?: HdsCodeBlockTitleTags; }; Blocks: { default: []; }; Element: HdsTextBodySignature['Element']; } export default class HdsCodeBlockTitle extends Component<HdsCodeBlockTitleSignature> { get componentTag(): HdsCodeBlockTitleTags; }