@threedddplus/logoeditor 0.0.4 → 0.0.5

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.
@@ -9,4 +9,6 @@ export interface LogoProps {
9
9
  logo_svg_url: string;
10
10
  created_at: string;
11
11
  }
12
- export declare const MyLogo: (onApply: any) => React.JSX.Element;
12
+ export declare const MyLogo: ({ onApply }: {
13
+ onApply: any;
14
+ }) => React.JSX.Element;
@@ -4804,7 +4804,8 @@ var Loader = function Loader(_ref) {
4804
4804
  }));
4805
4805
  };
4806
4806
 
4807
- var MyLogo$1 = function MyLogo(onApply) {
4807
+ var MyLogo$1 = function MyLogo(_ref) {
4808
+ var onApply = _ref.onApply;
4808
4809
  var _React$useState = React__default.useState(),
4809
4810
  logoSelected = _React$useState[0],
4810
4811
  setLogoSelected = _React$useState[1];