@fattureincloud/fic-design-system 0.7.28 → 0.7.29

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  import { buttonColors } from '../buttons/button/types';
3
3
  interface Props {
4
- title: string;
4
+ title?: string;
5
5
  type: 'success' | 'error' | 'warning' | 'info';
6
6
  description: string | JSX.Element;
7
7
  question?: string;
@@ -13,6 +13,7 @@ interface Props {
13
13
  setIsOpen: (state: boolean) => void;
14
14
  isSmall?: boolean;
15
15
  cancelColor?: buttonColors;
16
+ customHeader?: JSX.Element;
16
17
  }
17
18
  export declare const ConfirmationModal: (props: Props) => JSX.Element;
18
19
  export {};