@sinco/react 1.0.14-rc.57 → 1.0.14-rc.58

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.0.14-rc.57",
3
+ "version": "1.0.14-rc.58",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -1,4 +1,4 @@
1
- import React, { ReactNode } from 'react';
1
+ import { ReactNode } from 'react';
2
2
  export type EmptyStateStates = 'create' | 'error' | 'noResult' | 'search';
3
3
  export declare const EmptyStateImageUrls: Record<EmptyStateStates, string>;
4
4
  export interface EmptyStateProperties {
@@ -9,6 +9,5 @@ export interface EmptyStateProperties {
9
9
  imageHeight?: string;
10
10
  actions?: ReactNode;
11
11
  icon?: ReactNode;
12
- iconStyle?: React.CSSProperties;
13
12
  }
14
13
  export declare const EmptyStateComponent: ({ state, title, content, actions, icon, }: EmptyStateProperties) => JSX.Element;