legion-vue-core
Version:
27 lines (26 loc) • 529 B
TypeScript
export interface AlertProps {
/**
* set description of the component
*/
description?: any;
/**
* set icon of the component
*/
iconLeft?: any;
/**
* set hide icon of the component
*/
noIconLeft?: boolean;
/**
* set callback onClose of the component
*/
onClose?: () => void;
/**
* set title of the component
*/
title?: string;
/**
* set color of the component
*/
status?: 'success' | 'warning' | 'error' | 'information';
}