gov-ui-core 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,10 @@
1
1
  import React from 'react';
2
- export interface IPannelProps {
2
+ export interface IPanelProps {
3
3
  type?: 'default' | 'error' | 'success' | 'warning' | 'primary';
4
4
  title?: string;
5
5
  description?: string;
6
6
  isIcon?: boolean;
7
7
  buttonList?: any;
8
8
  }
9
- declare const Pannel: React.FC<IPannelProps>;
10
- export default Pannel;
9
+ declare const Panel: React.FC<IPanelProps>;
10
+ export default Panel;
@@ -0,0 +1,5 @@
1
+ export declare const PanelBox: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
2
+ type?: string | undefined;
3
+ title?: string | undefined;
4
+ isIcon?: boolean | undefined;
5
+ }, never>;
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  export interface IToastProps {
2
3
  toastPosition?: string;
3
4
  type?: 'default' | 'error' | 'success' | 'warning' | 'primary';
@@ -7,4 +8,5 @@ export interface IToastProps {
7
8
  isCloseBtn?: boolean;
8
9
  buttonList?: any;
9
10
  }
10
- export declare const Toast: ({ type, title, description, isIcon, isCloseBtn, buttonList, toastPosition, }: IToastProps) => import("react-toastify").Id;
11
+ declare const Toast: React.FC<IToastProps>;
12
+ export default Toast;