@hashicorp/design-system-components
Version:
Helios Design System Components
23 lines (22 loc) • 723 B
TypeScript
/**
* Copyright IBM Corp. 2021, 2025
* SPDX-License-Identifier: MPL-2.0
*/
import Component from '@glimmer/component';
import type { HdsTableHorizontalAlignment } from './types.ts';
import { HdsTableHorizontalAlignmentValues } from './types.ts';
export declare const ALIGNMENTS: HdsTableHorizontalAlignment[];
export declare const DEFAULT_ALIGN = HdsTableHorizontalAlignmentValues.Left;
export interface HdsTableTdSignature {
Args: {
align?: HdsTableHorizontalAlignment;
};
Blocks: {
default: [];
};
Element: HTMLTableCellElement;
}
export default class HdsTableTd extends Component<HdsTableTdSignature> {
get align(): HdsTableHorizontalAlignment;
get classNames(): string;
}