export interface ModalProps {
/**
* Sets the icon of the component
*/icon?: any;
/**
* Sets the callback onclose of the component
*/
onClose?: () => void;
/**
* Sets the show of the component
*/
show?: boolean;
/**
* Sets the title of the component
*/
title?: any;
}