@kelvininc/ui-components
Version:
Kelvin UI Components
19 lines (18 loc) • 463 B
TypeScript
import { EAlertType, IAlertConfig } from './alert.types';
import { EComponentSize } from '../../types';
/**
* @part container - The alert container.
*/
export declare class KvAlert implements IAlertConfig {
/** @inheritdoc */
type: EAlertType;
/** @inheritdoc */
size?: EComponentSize;
/** @inheritdoc */
showIcon?: boolean;
/** @inheritdoc */
label: string;
/** @inheritdoc */
description?: string;
render(): any;
}