UNPKG

@kelvininc/ui-components

Version:
19 lines (18 loc) 463 B
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; }