@hashicorp/design-system-components
Version:
Helios Design System Components
26 lines (25 loc) • 612 B
TypeScript
/**
* Copyright IBM Corp. 2021, 2025
* SPDX-License-Identifier: MPL-2.0
*/
import Component from '@glimmer/component';
import HdsYield from '../../yield/index';
export interface HdsFormSelectBaseSignature {
Args: {
isInvalid?: boolean;
width?: string;
id?: string;
ariaDescribedBy?: string;
};
Blocks: {
default: [
{
Options?: typeof HdsYield;
}
];
};
Element: HTMLSelectElement;
}
export default class HdsFormSelectBase extends Component<HdsFormSelectBaseSignature> {
get classNames(): string;
}